CJCoding With Joseph

Reverse a Number

Read a positive integer from input and use a loop to print its digits reversed, followed by a newline. For input 1234 the exact output is:

4321

Repeatedly take the last digit with % 10 and remove it with /= 10.

Expected Output:

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

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.