Computer Science, asked by emaduddinahmed42829, 10 months ago

Write a program to find square of given number and accept the number from the user.

Answers

Answered by madhvsingh06
3

Answer: IN PYTHON :

a = float(input("Enter a no. to find the square of it : "));

b = a**2 ;

print("The square of the given no. is :", b);

HOPE IT HELPS

Answered by sahilgenius777
0

Answer:

Write a program to find square of given number and accept the number from the user.

Similar questions