-
Lenguaje
C
-
Descripción
Una tienda llamada Skeleton desea saber el precio de las prendas que lleva el cliente. Si lleva más de $300 aplicar descuento del 20%, si lleva más de $500 se hace el 30%, si lleva más de $1000 se hace el 35%, calcula el IVA y si quiere hacer otra transacción.
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
30
31
32
33
34
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
30
31
32
33
34
#include <stdio.h>
#include <stdlib.h>
#include <conio.h>
int main (void)
{
float IVA, descuento, subtotal, total;
char tecla_repetir;
do {
system ("cls");
printf ("Ingresa el valor de subtotal: ");
scanf ("%f", &subtotal);
(void) getchar ();
descuento=0;
if(subtotal>300&&subtotal<=500)
descuento=subtotal*0.2;
if(subtotal>500&&subtotal<=1000)
descuento=subtotal*0.3;
if(subtotal>1000)
descuento=subtotal*0.35;
IVA=(subtotal-descuento)*0.16;
total=subtotal-descuento+IVA;
printf ("Valor de IVA: %g\n", IVA);
printf ("Valor de descuento: %g\n", descuento);
printf ("Valor de total: %g\n", total);
putchar ('\n');
printf ("\250Deseas repetir el proceso? (S/N): ");
do {
tecla_repetir = (char) getch();
} while (tecla_repetir!='s' && tecla_repetir!='n' && tecla_repetir!='S' && tecla_repetir!='N');
putchar ('\n');
} while (tecla_repetir=='s' || tecla_repetir=='S');
return EXIT_SUCCESS;
}
#include <stdlib.h>
#include <conio.h>
int main (void)
{
float IVA, descuento, subtotal, total;
char tecla_repetir;
do {
system ("cls");
printf ("Ingresa el valor de subtotal: ");
scanf ("%f", &subtotal);
(void) getchar ();
descuento=0;
if(subtotal>300&&subtotal<=500)
descuento=subtotal*0.2;
if(subtotal>500&&subtotal<=1000)
descuento=subtotal*0.3;
if(subtotal>1000)
descuento=subtotal*0.35;
IVA=(subtotal-descuento)*0.16;
total=subtotal-descuento+IVA;
printf ("Valor de IVA: %g\n", IVA);
printf ("Valor de descuento: %g\n", descuento);
printf ("Valor de total: %g\n", total);
putchar ('\n');
printf ("\250Deseas repetir el proceso? (S/N): ");
do {
tecla_repetir = (char) getch();
} while (tecla_repetir!='s' && tecla_repetir!='n' && tecla_repetir!='S' && tecla_repetir!='N');
putchar ('\n');
} while (tecla_repetir=='s' || tecla_repetir=='S');
return EXIT_SUCCESS;
}