Volume and Surface Area of a Cylinder
Problem : Create a flow chart for a program that asks a user to input the radius
and height of a cylinder, reads the numbers, and calculates the volume and surface area
of the cylinder. Have the program output all data including original values.
Algorithm :
- Start
- Ask user for the radius and height of a cylinder
- Input the numbers
- find the volume of the cylinder
- find the surface area of the cylinder
- display the radius, height, volume and surface area of the cylinder
- Stop