โ Back to Loops
Question 333
Reverse a Number
Reverse a Number
Read a positive integer from input and use a loop to print its digits reversed, followed by a newline. For input1234the exact output is: 4321 Repeatedly take the last digit with% 10and remove it with/= 10.
Expected Output:
4321
Topics:
Loops
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.