CJCoding With Joseph

Overload Add By Arity

The Calculator class has an Add method that sums two int values. Add an overload of Add that sums three int values. Overloads can differ by how many parameters they take. Do NOT write a Main method.

The tester prints Add(2, 3) then Add(2, 3, 4):
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.