โ Back to User Input
Question 358
Reverse Digits of a Number
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
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.