write an algorithm and the corresponding flowchart to find the area of a circle
1
Expert's answer
2020-02-10T03:50:59-0500
Algorithm:
1 declare radius as float, area as float
2 ask to input radius
3 while radius is less than 0.0:
4 ask again to input radius
5 compute area by the formula 3.14 * radius * radius
6 display area
Comments
Leave a comment