ALGORITHM
- Get the radius of circle
- Calculate the area of circle with 3.14 multiply by radius by radius
- Display the area of circle
- Read the radius
- Set the area = 3.14*radius*radius
- Print output
ALGORITHM
- Get the fahrenheit of celcius
- Calculate celcius equal to five divided by nine multiply by fahrenheit minus 32
- Display the celcius of fahrenheit
- Read the fahrenheit
- Set the celcius = (5/9)*(fahrenheit-32)
- Print output
ALGORITHM
- Get the celcius of fahrenheit
- Calculate fahrenheit equal to nine divided by five multiply by celcius plus 32
- Display the fahrenheit of celcius
- Read the celcius
- Set the fahrenheit = (9/5)*(celcius+32)
- Print output