How can I fix the errors in this problem? what am I doing wrong?
using namespace std;
int main(int argc, char *argv) { int Numero ;
cout << "Numero : " ;
cin >>numero al cuadrado ; numero_cuadrado = numero * numero
cin >>numero al cubo ; numero_cubo = numero * numero * numero
cout << "Numero al Cuadrado = " << numero_cuadrado << " \n -----------------";
cout<< "Numero al Cubo " << numero_cubo << " \n ------------------";
system("PAUSE"); return EXIT_SUCCESS;
Well, why don't you start by posting the rest of your "Basic 3", the are covered in the thread titled "Please Read Before Posting a Question"
Log in to post a comment.
How can I fix the errors in this problem? what am I doing wrong?
include <cstdlib>
include <iostream>
using namespace std;
int main(int argc, char *argv)
{
int Numero ;
cout << "Numero : " ;
cin >>numero al cuadrado ;
numero_cuadrado = numero * numero
cin >>numero al cubo ;
numero_cubo = numero * numero * numero
cout << "Numero al Cuadrado = " << numero_cuadrado << " \n -----------------";
cout<< "Numero al Cubo " << numero_cubo << " \n ------------------";
system("PAUSE");
return EXIT_SUCCESS;
Well, why don't you start by posting the rest of your "Basic 3", the are
covered in the thread titled "Please Read
Before Posting a Question"