CJCoding With Joseph

Cylinder Volume Class

Create a class Cylinder whose constructor stores a radius and a height, and a Volume() method that returns pi times radius squared times height. The tester prints the volume rounded to 2 decimal places. Do not write a Main method.

For radius 2 and height 5 the program prints:
62.83

Expected Output:

62.83
Topics:
Classes
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cw, cr, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.