display "************************************************";

      display "Want to determine the volume of a right circular cylinder!";

      display "";      

      display "What is the height of the cylinder? ";

      read height;

      display "What is the radius of the cylinder? ";

      read radius;

      3.14* radius * radius * height = volume;

      display "";      

      display "The volume of the cylinder is ", volume;

      display "************************************************";