CJCoding With Joseph

Overload a Method by Argument Count

Method overloading (compile-time polymorphism) lets one method name have several versions with different parameter lists. The Calculator class already has Add(int, int). Add an overload Add(int, int, int) that returns the sum of all three numbers. Do NOT write a Main method.

The tester calls both versions, so the program prints:
5
9

Expected Output:

5
9
Topics:
Polymorphism
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.