• Lenguaje

    C

  • Descripción

    Un chef quiere calcular costo total de preparar una receta de 5 ingredientes. Ingresar cantidad, precio y nombre de cada ingrediente.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#include <stdio.h>
#include <stdlib.h>

int main (void)
{
    int i;
    float cantidad_del_ingrediente, costo_total, precio_del_ingrediente;
    char nombre_del_ingrediente[63];
    costo_total = 0;
    for (i=1; i<=5; i++)
    {
        printf ("PROCESO %d\n", i);
        printf ("Ingresa el nombre del ingrediente: ");
        scanf ("%[^\r\n]", nombre_del_ingrediente);
        (void) getchar ();
        printf ("Ingresa el valor de cantidad del ingrediente: ");
        scanf ("%f", &cantidad_del_ingrediente);
        (void) getchar ();
        printf ("Ingresa el valor de precio del ingrediente: ");
        scanf ("%f", &precio_del_ingrediente);
        (void) getchar ();
        costo_total=costo_total+precio_del_ingrediente*cantidad_del_ingrediente;
        printf ("Nombre del ingrediente: %s\n", nombre_del_ingrediente);
        putchar ('\n');
    }
    printf ("Valor de costo total: %f\n", costo_total);
    system ("pause");
    return EXIT_SUCCESS;
}