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;

      volume = 3.14* r * r * h;

      display "";      

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

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