CJCoding With Joseph

Function: Reverse a Number

Complete the function reverseNum so it returns the digits of a positive integer reversed. The main function reads the number and prints the reversed value.

Example: input 1234 prints 4321.

Expected Output:

4321
Topics:
Functions/Methods
๐Ÿ“ฅ Auto-Input:
1234\n
This input is automatically fed to your program's stdin
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (p, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.