gracias de antemano
Código:
/* SUPERMERCADO DESCUENTA SI LA COMPRA ES >10000 @fidentis */ #include <iostream> using namespace std; int main() { int c, d, iva, t; cout<<"VALOR DE LA COMPRA"; cin>>c; if ( c>100000 ) t=c+iva-d; cout<<"VALOR TOTAL"<<t; d=c*10/100; cout<<"DESCUENTO"<<d; iva=c*20/100; cout<<"IVA"<<iva; else cout<<"VALOR TOTAL"<<c; system("pause"); }