标签:log 字符 检测 输入 注意 etc turn 问题 输出
这道题很简单,需要注意的就是注意数字越界问题,不仅仅是输入的字符需要检测,有时候会有输入字符没越界,但是输出时的数字越界的问题,所以在最后也要设置越界检测。
static int reverse(int x) { int res = 0; while (x) { res = res * 10 + x % 10; x /= 10; } return (res < INT_MIN || res > INT_MAX) ? 0 : res; }
标签:log 字符 检测 输入 注意 etc turn 问题 输出
原文地址:http://www.cnblogs.com/INnoVationv2/p/6049415.html