C++ Program to Calculate Square of a Number

Write a C++ Program to find the Square of a Number with an example. This C++ code allows you to enter any number and finds the square of it. #include<iostream> using namespace std; int main() { int number, square; cout << “\nPlease Enter Number to find Square of it = “; cin >> number; square … Read more