CJCoding With Joseph

Params Sum Method

Write the static method Sum using a params 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 a Main method.

For Sum(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.