摘要: public int reverse(int x){ int size=0; int result=0; boolean boo=true; if (x==0){ return 0; } int temp=x; while (temp!=0){ temp/=10; // 注意:这个判断不能在whil 阅读全文
posted @ 2022-09-05 22:07 晚生小白 阅读(173) 评论(0) 推荐(0)