CJCoding With Joseph

Overload By Parameter Type

The Formatter class has a Show(int) method. Add an overload Show(double) so the correct one runs based on the argument's type. This is compile-time (overload) polymorphism. Do NOT write a Main method.

The tester prints Show(5) then Show(2.5):
int: 5
double: 2.5

Expected Output:

int: 5
double: 2.5
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.