CJCoding With Joseph

Reverse a Number

Read a positive integer n from standard input and print its digits reversed, with no trailing newline. For example, if the input is 1234, print:

4321

Build the reversed value using n % 10 and n / 10 in a loop. (Leading zeros disappear, so an input of 570 prints 75.)

Expected Output:

4321
Topics:
Loops
๐Ÿ“ฅ 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 (p, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.