• Lenguaje

    C

  • Descripción

    Calcule el total de la compra de 10 productos.

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 costo_del_producto, total;
    total = 0;
    for (i=1; i<=10; i++)
    {
        printf ("PROCESO %d\n", i);
        printf ("Ingresa el valor de costo del producto: ");
        scanf ("%f", &costo_del_producto);
        (void) getchar ();
        total=total+costo_del_producto;
        putchar ('\n');
    }
    printf ("Valor de total: %f\n", total);
    system ("pause");
    return EXIT_SUCCESS;
}