Write a program to input the side of square and print the area of square
please solve the progarm
Answers
Answered by
0
Answer:
Hey! This is in python...
s = float(input("Enter side of square: "))
print("Area of square = ", s**2)
# Hope this helps!!
Answered by
0
Answer:
area of square will be s^2
Similar questions