CJCoding With Joseph

Sum of N Numbers

First read an integer n, the count of numbers to follow. Then read n more integers and print their total. For example, if the input is 3 followed by 4, 5, 6, print:

Sum: 15

Use a loop that runs n times, calling sc.nextInt() inside it.

Expected Output:

Sum: 15
Topics:
User Input
๐Ÿ“ฅ Auto-Input:
3\n4\n5\n6\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.