CJCoding With Joseph

Overloaded Print Methods

Write two overloaded methods, both named show. show(int n) prints Number:  followed by n. show(String s) prints Text:  followed by s. In main, call show(5) then show("hi"). The output is:

Number: 5
Text: hi

Expected Output:

Number: 5
Text: hi
Topics:
Methods
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (sysout, psvm, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.