• Lenguaje

    C

  • Descripción

    Calcular el pago total de consumo de luz de 10 casas habitación. Indique el gasto por luz.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include <stdio.h>
#include <stdlib.h>

int main (void)
{
    int i;
    float gasto_por_luz, pago_total;
    pago_total = 0;
    for (i=1; i<=10; i++)
    {
        printf ("PROCESO %d\n", i);
        printf ("Ingresa el valor de gasto por luz: ");
        scanf ("%f", &gasto_por_luz);
        (void) getchar ();
        pago_total=pago_total+gasto_por_luz;
        putchar ('\n');
    }
    printf ("Valor de pago total: %f\n", pago_total);
    system ("pause");
    return EXIT_SUCCESS;
}