CJCoding With Joseph

Reverse Digits of a Number

Read a positive integer from input and print the number formed by reversing its digits. For example, if the input is:

1234

print:

4321

Build the reversed number by repeatedly taking the last digit with % 10 and dividing by 10.

Expected Output:

4321
Topics:
User Input
๐Ÿ“ฅ Auto-Input:
1234
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 (cout, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.