Question #26311

I want to write a program
Around the square are the same numbers that come together

Expert's answer

# include <iostream>

using namespace std;

int main(){
cout<<"Enter number:";
double num;
cin>>num;
cout<<static_cast<int>(num*num)<<endl;
//couts int value - Arounds the square

system("PAUSE");
return 0;
}
LATEST TUTORIALS
APPROVED BY CLIENTS