Ver Mensaje Individual
  #2 (permalink)  
Antiguo 04/06/2009, 17:54
arkang31
 
Fecha de Ingreso: septiembre-2008
Mensajes: 101
Antigüedad: 16 años, 2 meses
Puntos: 4
Respuesta: Potenciacion Dev-C++

Código:
#include <cstdlib>
#include <iostream>
#include <math.h>

using namespace std;

int main(int argc, char *argv[])
{
    double x,y,z,rs;
    int X,Y;
    cout<<"Operaciones"<<endl<<"1 ---> Suma"<<endl<<"2 ---> Resta"<<endl<<"3 ---> Multiplicacion"<<endl<<"4 ---> Divicion"<<endl<<"5 ---> Potencia"<<endl;
    cout<<"Ingrese el numero correspondiente a su operacion:"<<" ";
    cin>>x;
    cout<<"Primero Numero:"<<" ";
    cin>>y;
    cout<<"Segundo Numero:"<<" ";
    cin>>z;
    if(x==1)
    rs=y+z;
    if(x==2)
    rs=y-z;
    if(x==3)
    rs=y*z;
    if(x==4)
    rs=y/z;
    if(x==5)
    rs=pow(x,y);
    cout<<"El resultado de la operacion es:"<<" "<<rs<<endl;
    system("PAUSE");
    return EXIT_SUCCESS;
}
Código:
#include <math.h>
Código:
    if(x==5)
    rs=pow(x,y);
bueno hay esta la solucion porsi le pasa a alguien mas