CJCoding With Joseph

Circle Area from Input

Read a circle's radius (a decimal number) from standard input and print its area rounded to two decimal places. Use the formula area = 3.14159 * r * r with the value 3.14159 for PI. For example, if the input is 2, print:

12.57

Use printf with %.2f and no trailing newline.

Expected Output:

12.57
Topics:
User Input
๐Ÿ“ฅ Auto-Input:
2\n
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 (p, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.