โ Back to Methods
Question 367
Params Sum Method
Params Sum Method
Write the static methodSumusing aparams int[]parameter so it can accept any number of integer arguments and return their total. The tester calls it with different argument counts and prints the result. Do NOT write aMainmethod. ForSum(1, 2, 3, 4)the program prints exactly: 10
Expected Output:
10
Topics:
Methods
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cw, cr, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.