Computer Science, asked by umasanthoshisiva, 11 months ago

WAP to calculate the area and perimeter of a square​

Answers

Answered by xxiTzSiLeNtKiLlErxx
2

Answer:

area of square=side^2

perimeter of square=4×side

\huge{\boxed{\mathfrak\pink{\fcolorbox{red}{purple}{hope it helps }}}}

Explanation:

mark it as brainliest ♥️ ♥️♥️

Answered by gaganadithyareddy9
0

Answer:

Hey! Here is your code in python...

x = float(input("Enter length of rectangle: "))

y = float(input("Enter breadth of rectangle: "))

print("Area of rectangle = ", x*y)

print("Perimeter of rectangle = ", 2*(x+y))

# HOPE THIS HELPS!!

Similar questions