Welcome to Westonci.ca, where your questions are met with accurate answers from a community of experts and enthusiasts. Ask your questions and receive precise answers from experienced professionals across different disciplines. Discover in-depth answers to your questions from a wide network of professionals on our user-friendly Q&A platform.

write an algorithm to print circumference of a circle​

Sagot :

Answer:

1 Start

2 Read the value of radius r of Circle

3. Give Pi = 3.14

4 Calculate area of Circle = Pi x r x r

5. Calculate Circumference of circle

( You can use either C= 2 X Pi X r Or Area (A) = Pi X r X r Circumference (C) = 2 X Pi X r A/r = Pi X r A/r = C/2 So C = 2 x ( A/r ) 5. Print area and Circumference

6. End.