-
Lenguaje
C
-
Descripción
Un almacén de venta de ropa tiene las siguientes promociones para sus clientes las cuales consisten en lo siguiente:
- Para ventas menores o iguales a 100.000, se hace un descuento del 15%.
- Para ventas mayores a 100.000 y menores o iguales a 200.0000, se hace el 25%.
- Para ventas mayores a 200.000, se hace un 35% de descuento.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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)
{
float descuento, total, venta;
printf ("Ingresa el valor de venta: ");
scanf ("%f", &venta);
(void) getchar ();
descuento=venta*0.15;
if(venta>100000)
descuento=venta*0.25;
if(venta>200000)
descuento=venta*0.35;
total=venta-descuento;
printf ("Valor de descuento: %g\n", descuento);
printf ("Valor de total: %g\n", total);
putchar ('\n');
system ("pause");
return EXIT_SUCCESS;
}
#include <stdlib.h>
int main (void)
{
float descuento, total, venta;
printf ("Ingresa el valor de venta: ");
scanf ("%f", &venta);
(void) getchar ();
descuento=venta*0.15;
if(venta>100000)
descuento=venta*0.25;
if(venta>200000)
descuento=venta*0.35;
total=venta-descuento;
printf ("Valor de descuento: %g\n", descuento);
printf ("Valor de total: %g\n", total);
putchar ('\n');
system ("pause");
return EXIT_SUCCESS;
}