Computer Science, asked by mampiruvana09, 4 hours ago

Write an algorithm and draw a flowchart to input the radius of a circle and display it's area.​

Answers

Answered by amrapalidas1967
4

Answer:

1. Enter radius

2.Initialize variable a pi as 3.14159 or 22/7 (if using JAVA use "Math.PI")

3.Circle area = PI*r*r

4. Display area

Explanation:

Flow chart

Start

|

"Enter Radius",r

|

Area = 3.14*r*r

|

Print Area

|

Stop

Answered by anonymous66682
7

Algorithm:

1. Start

2. Read the input value for radius of a circle and store the result into a variable named Area

3. Print the result stored in the variable Area

4. Stop

Attachments:
Similar questions