-
Notifications
You must be signed in to change notification settings - Fork 0
/
U38.c
35 lines (28 loc) · 873 Bytes
/
U38.c
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
35
#include <stdio.h>
#include <locale.h>
#include <stdlib.h>
/*
U38. Elabore un programa que permita ingresar el precio y la cantidad de un artículo a comprar.
Calcular el total a pagar. (Considerar el IVA 21%).
*/
int main()
{
setlocale(LC_ALL,"spanish"); system("color F0");
char a;
do
{
int PrecUni=0, Tot=0, cant=0, totalprod=0;
printf("Ingrese el precio unitario de lo que va a comprar (se le sumará IVA 21%%). ");
scanf("%i",&PrecUni);
fflush(stdin);
printf("\nIngrese la cantidad que va a comprar de ese producto. ");
scanf("%i",&cant);
fflush(stdin);
totalprod=(PrecUni*cant);
Tot=(totalprod*1.21);
printf("\n\nEl precio total a pagar es: %i \n\n",Tot);
printf("\n\nSi desea salir presione s, si quere continuar presione c: ");
scanf("%c",&a);
} while(a=='c');
return 0;
}