( --> )

Superficial Signature Example

 -->

// Observe the given information
   double height = <double>;
   double diameter = <double>;

// Determine other relevant information
   double radius = <double> / <double>;

// Create the top and the bottom
   Circle top = new Circle(<double>);
   Circle bottom = new Circle(<double>);

// Create the side
   double length = <Circle>.perimeter();
   Rectangle side = new Rectangle(<double>,<double>);

// Compute the result
   double surfaceArea = 
      <Circle>.area() + <Circle>.area() + <Rectangle>.area(); 

// Display the result
   IO.print(<String>);
   IO.print(<double>);
   IO.println(<String>);