Computer Science, asked by kumarsaroj62460, 23 days ago

write program : a) to calculate the area of square​

Answers

Answered by AfshaZeenat67
1

Answer:

4 × side

is the area of a square..

Answered by krithivjayaprakash
2

Answer:

Python Programming

#To Calculate the area of square.

a=float(input("Enter the Length/Side of the 'Square':")

if a!=0:

b=a*2

print(" Side of the 'Square' is", a)

print(" The Area of the 'Square' is", b)

else:

print("The Side of 'Square' never be zero(0)")

Similar questions