WAP to calculate the area and perimeter of a square
Answers
Answered by
2
Answer:
area of square=side^2
perimeter of square=4×side
Explanation:
mark it as brainliest ♥️ ♥️♥️
Answered by
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