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 :
  1. Start
  2. Ask user for the radius and height of a cylinder
  3. Input the numbers
  4. find the volume of the cylinder
  5. find the surface area of the cylinder
  6. display the radius, height, volume and surface area of the cylinder
  7. Stop
Untitled 2