CJCoding With Joseph

Circle Area Class

Create a class Circle with a constructor that stores a radius and an Area() method that returns the circle's area (pi times radius squared). The tester prints the area rounded to 2 decimal places. Do not write a Main method.

For a Circle with radius 2 the program prints:
12.57

Expected Output:

12.57
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.