Computer Science, asked by sharathpoojary2005, 4 days ago


write an algorithm to find area and circumference of the circle​

Answers

Answered by dikshachavan258
0

Explanation:

Step 1: Start

Step 2: input radius

Step 3: let pi = 3.14

Step 5: circumference = 2 * pi * radius

Step 6: print circumference

Step 7: stop

hope it's helpful to you...

Answered by samarthkrv
0

Answer:

rad = float(input("Enter radius:"))

area = 3.14 * rad * rad

circumfrence = 2 * 3.14 * rad

print("The area of the circle is:" , area)

print("The circumfrence of the circle is " , circumfrence)

Explanation:

Similar questions