CJCoding With Joseph

Two Overloaded Print Methods

The Printer class already has a Print(int) method. Add a second Print method that takes a string so the same method name works for both types. This is method overloading. Do NOT write a Main method.

The tester calls Print(7) then Print("hi") and the program prints:
Int: 7
Text: hi

Expected Output:

Int: 7
Text: hi
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.