-
Lenguaje
C
-
Descripción
Realizar un programa donde se vendan 5 artículos y se pida el artículo, precio y cantidad, se presente en pantalla el importe de la venta del artículo y se presente al final el total del importe de la compra.
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
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
#include <stdio.h>
#include <stdlib.h>
int main (void)
{
int i;
float cantidad, importe_de_la_compra, precio, venta_del_articulo;
importe_de_la_compra = 0;
for (i=1; i<=5; i++)
{
printf ("PROCESO %d\n", i);
printf ("Ingresa el valor de cantidad: ");
scanf ("%f", &cantidad);
(void) getchar ();
printf ("Ingresa el valor de precio: ");
scanf ("%f", &precio);
(void) getchar ();
venta_del_articulo=precio*cantidad;
importe_de_la_compra=importe_de_la_compra+venta_del_articulo;
printf ("Valor de venta del articulo: %g\n", venta_del_articulo);
putchar ('\n');
}
printf ("Valor de importe de la compra: %f\n", importe_de_la_compra);
system ("pause");
return EXIT_SUCCESS;
}
#include <stdlib.h>
int main (void)
{
int i;
float cantidad, importe_de_la_compra, precio, venta_del_articulo;
importe_de_la_compra = 0;
for (i=1; i<=5; i++)
{
printf ("PROCESO %d\n", i);
printf ("Ingresa el valor de cantidad: ");
scanf ("%f", &cantidad);
(void) getchar ();
printf ("Ingresa el valor de precio: ");
scanf ("%f", &precio);
(void) getchar ();
venta_del_articulo=precio*cantidad;
importe_de_la_compra=importe_de_la_compra+venta_del_articulo;
printf ("Valor de venta del articulo: %g\n", venta_del_articulo);
putchar ('\n');
}
printf ("Valor de importe de la compra: %f\n", importe_de_la_compra);
system ("pause");
return EXIT_SUCCESS;
}