Programacion C++
Enviado por gmolinalon • 27 de Septiembre de 2014 • 874 Palabras (4 Páginas) • 113 Visitas
#include <cstdlib>
#include <iostream>
using namespace std;
int main()
{ double op,A,B,C;
cout<<"Elija la operacion a realizar"<<endl;
cout<<"1. Suma"<<endl;
cout<< "2. Resta"<<endl;
cout<<"3. Multiplique"<<endl;
cout<<"4. Divida"<<endl;
cout<<"5. Salir"<<endl;
cout<<"Escoja una opcion"<<endl;
cin>>op;
if(op>=1 && op<=5)
{
if(op==1)
{
cout<<"Ingrese un numero"<<endl;
cin>>A;
cout<<"Ingrese un numero"<<endl;
cin>>B;
C=A+B;
cout<<"La suma es "<<C<<endl;
}
if(op==2)
{
cout<<"Ingrese un numero"<<endl;
cin>>A;
cout<<"Ingrese un numero"<<endl;
cin>>B;
C=A-B;
cout<<"La resta es "<<C<<endl;
}
if(op==3)
{
cout<<"Ingrese un numero"<<endl;
cin>>A;
cout<<"Ingrese un numero"<<endl;
cin>>B;
C=A*B;
cout<<"La multiplicacion es "<<C<<endl;
}
if(op==4)
{
cout<<"Ingrese un numero"<<endl;
cin>>A;
cout<<"Ingrese un numero"<<endl;
cin>>B;
C=A/B;
cout<<"La division es "<<C<<endl;
}
if(op==5)
{cout<<"Gracias por usar el programa"<<endl;
system("PAUSE");
return EXIT_SUCCESS;
}
}
else
cout<<"Fuera de rango"<<endl;
system("PAUSE");
...