Respuestas
Respuesta dada por:
2
#include <iostream>
#include<stdlib.h>
using namespace std;
int main()
{
double n1=0,n2=0;
cout<<"Ingrese N1: ";
cin>>n1;
cout<<"Ingrese N2: ";
cin>>n2;
cout<<"\nLa Suma Es: "<<(n1+n2);
cout<<"\nLa Resta Es: "<<(n1-n2);
cout<<"\nLa Multiplicacion Es: "<<(n1*n2);
cout<<"\nLa Division Es: "<<(n1/n2);
system("PAUSE>NULL");
return 0;
}
Preguntas similares
hace 6 años
hace 6 años
hace 8 años
hace 8 años
hace 9 años
hace 9 años