โ Back to Methods
Question 367
Overloaded Print Methods
Overloaded Print Methods
Write two overloaded methods, both namedshow.show(int n)printsNumber:followed byn.show(String s)printsText:followed bys. Inmain, callshow(5)thenshow("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.