โ Back to User Input
Question 347
Circle Area from Radius
Circle Area from Radius
Read a floating-point radius from input and print the area of the circle with exactly 2 decimal places. Use the value 3.14159 for pi and the formula area = pi * r * r. For example, if the input is: 2 print: 12.57 Use<iomanip>withfixedandsetprecision(2).
Expected Output:
12.57
Topics:
User Input
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.