CJCoding With Joseph

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> with fixed and setprecision(2).

Expected Output:

12.57
Topics:
User Input
๐Ÿ“ฅ Auto-Input:
2
This input is automatically fed to your program's stdin
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.