Problem C: 递归输出每一位
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:289
Solved:153
Description
输入一个非负整数,输出这个数的倒序数。例如输入123,输出321。(使用递归函数完成)
Input
输入一个非负整数
Output
输出这个数的倒序数
Sample Input Copy
120
Sample Output Copy
021