CJCoding With Joseph

Read Two Doubles and Average

Read two decimal numbers from standard input (one per line) and print their average rounded to two decimals. For example, if the input is 10 then 20, print:

Average: 15.00

Use sc.nextDouble() twice and print with printf("Average: %.2f%n", ...).

Expected Output:

Average: 15.00
Topics:
User Input
๐Ÿ“ฅ Auto-Input:
10\n20\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 (sysout, psvm, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.