โ Back to Functions
Question 395
Circle Area Function
Circle Area Function
Write a functiondouble area(double r)that returns the area of a circle using3.14159 * r * r. Call it witharea(2.0)and print the result with exactly 2 decimal places: 12.57 Use<iomanip>fixedandsetprecision(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.