โ Back to User Input
Question 312
Read Two Doubles and Average
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 is10then20, print: Average: 15.00 Usesc.nextDouble()twice and print withprintf("Average: %.2f%n", ...).
Expected Output:
Average: 15.00
Topics:
User Input
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.