23/08/2012, 18:46
|
| | Fecha de Ingreso: junio-2011
Mensajes: 39
Antigüedad: 13 años, 7 meses Puntos: 0 | |
al compilar me dice error "else" pero yo lo veo bien Ustedes ven el error?
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");
}
|