CJCoding With Joseph

Circle Area Function

Write a function double area(double r) that returns the area of a circle using 3.14159 * r * r. Call it with area(2.0) and print the result with exactly 2 decimal places:

12.57

Use <iomanip> fixed and setprecision(2).

Expected Output:

12.57
Topics:
Functions
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cout, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.