Computer Science, asked by daxa1582, 7 months ago

1. Draw Flowchart To Calculate the Area of Circle and write an algorithm for it.​

Answers

Answered by shantanukumar9686
1

Answer:

An algorithm is a step-by-step analysis of the process, while a flowchart explains the steps of a program in a graphical way. Algorithm and flowcharts helps to clarify all the steps for solving the problem. ... Beginners find it difficult to write algorithm and draw flowchart.

Explanation:

1 START.

2 INTEGER AREA,RADIUS.

3 PRINT "ENTER THE RADIUS OF CIRCLE - "

4 AREA=3.14*RADIUS*RADIUS.

5 PRINT "AREA OF CIRCLE = "

6 PRINT AREA.

7 EXIT.

Similar questions