摘要: 输入: 123 输出: 321 输入: -123 输出: -321 int reverse(int x) { int res = 0; while(x) { int tmp = x%10; x/=10; res = res * 10 + tmp; } return res; } 阅读全文
posted @ 2019-05-16 17:28 低调小怪 阅读(1012) 评论(0) 推荐(0)