Write a program to accept an integer number and print its square
Answers
Answered by
0
Answer:
#include<iostream>
using namespace std;
int main()
{
int a;
cout << " Enter your Integer: \n";
cin >> a;
cout << "square of this integer is " << a*a;
return 0;
}
Similar questions