Computer Science, asked by 13usb10085, 5 months ago

2. Write an algorithm to get the value of perimeter of a circle from the user and find its diameter.
3. Write an algorithm to get the value of side of square from the user and find its perimeter.
ngle from the user and find its​

Answers

Answered by RuwaisnZaid
4

Explanation:

2)

import math

perm = int(input("entter perimeter"))

r = perm/2*math.pi()

print("radius",r)

Similar questions