Computer Science, asked by naneihilovemom9684, 5 months ago

Write a program to accept an integer number and print its square

Answers

Answered by Wahib2247
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