2019年11月11日

摘要: 实现代码: class Solution { public: int reverse(int x) { int rev=0; while(x!=0) { int pop=x%10; x=x/10; if(rev>INT_MAX/10 ||(rev==INT_MAX/10 && pop>7)) ret 阅读全文

posted @ 2019-11-11 20:50 辉仔猿 阅读(184) 评论(0) 推荐(0)