Computer Science, asked by missmuskanarora26, 8 months ago

Write Algorithm For The Following:
1. Accept the value of a side of a square and calculate and display the area and perimeter.​

Answers

Answered by AnshuBhardwaj123
0

Answer: In PYTHON

take input from user side of square

Explanation:

a=int(input("enter the side of square:"))

area=a*a

perimeter=4*a

print("Arear of square is:",area)

print("Perimeter of square is",perimeter)

hope you get it

Similar questions