Computer Science, asked by lalagastya62, 1 day ago

Subject : Write a menu drive program a using user defined funtion to calculate the following: a) Perimeter of a C Wxside า square​

Answers

Answered by samarthkrv
0

Answer:

len = int(input("Enter the length of the square:"))

perimeter = 4*len

print("The perimeter of the square with length",len,"is",perimeter)

Explanation:

Similar questions