Write a program to find square of given number and accept the number from the user.
Answers
Answered by
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
0
Answer:
Write a program to find square of given number and accept the number from the user.
Similar questions