โ Back to User Input
Question 325
Sum Until End of Input
Sum Until End of Input
Keep reading integers from standard input until there are no more, then print their total. Usesc.hasNextInt()to detect the end of input. For example, if the input is5,10,15, print: Total: 30 Read each value withsc.nextInt()inside awhile (sc.hasNextInt())loop.
Expected Output:
Total: 30
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.