CJCoding With Joseph

Reverse the Digits of a Number

Write a function int reverseNumber(int n) that returns a positive integer with its digits reversed. Leading zeros disappear, so reversing 100 gives 1.

For reverseNumber(123) the program prints 321.

Expected Output:

321
Topics:
Functions
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cout, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.