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

LeetCode刷题笔记-7.整数反转最先出现在Python成神之路

版权声明:
作者:siwei
链接:https://www.techfm.club/p/29205.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>