LeetCode刷题笔记-7.整数反转
LeetCode刷题笔记-7.整数反转
C代码注意点结果
C代码
#define INTMAX (2147483647)
#define INXMIN (-2147483648)
int reverse(int x){
int ans = 0;
while (x != 0) {
if (ans > INTMAX/10)
return 0;
if (ans == INTMAX/10) {
if (x % 10 > 7) {
return 0;
}
}
if (ans < INXMIN/10) {
return 0;
}
if (ans == INXMIN/1
共有 0 条评论