CJCoding With Joseph

Sum Until End of Input

Keep reading integers from standard input until there are no more, then print their total. Use sc.hasNextInt() to detect the end of input. For example, if the input is 5, 10, 15, print:

Total: 30

Read each value with sc.nextInt() inside a while (sc.hasNextInt()) loop.

Expected Output:

Total: 30
Topics:
User Input
๐Ÿ“ฅ Auto-Input:
5\n10\n15\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.