โ Back to Loops
Question 215
Reverse a Number
Reverse a Number
Read a positive integernfrom standard input and print its digits reversed, with no trailing newline. For example, if the input is1234, print: 4321 Build the reversed value usingn % 10andn / 10in a loop. (Leading zeros disappear, so an input of570prints75.)
Expected Output:
4321
Topics:
Loops
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.