โ Back to User Input
Question 320
Sum of N Numbers
Sum of N Numbers
First read an integern, the count of numbers to follow. Then readnmore integers and print their total. For example, if the input is3followed by4,5,6, print: Sum: 15 Use a loop that runsntimes, callingsc.nextInt()inside it.
Expected Output:
Sum: 15
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.