1307: NOIP2011:数字反转
Memory Limit:128 MB
Time Limit:1 S
Judge Style:Text Compare
Creator:
Submit:287
Solved:171
Description
给定一个整数,请将该数各个位上数字反转得到一个新数。新数也应满足整数的常见形
式,即除非给定的原数为零,否则反转后得到的新数的最高位数字不应为零.
Input
输入共 1 行,一个整数N
Output
输出共 1 行,一个整数,表示反转后的新数。
Sample Input Copy
-380
Sample Output Copy
-83
HINT
数据范围
-1,000,000,000 ≤ N≤ 1,000,000,000。
NOIP2011普及组第一题