โ Back to Methods
Question 150
Reverse a Number Method
Reverse a Number Method
Complete the static method Reverse so it returns a positive integer with its digits reversed (leading zeros disappear). Do NOT write a Main method.
For Reverse(123) the program prints 321, and Reverse(100) prints 1.Expected Output:
321
Topics:
Methods
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.