给定一个int值,将其反转,不能用String处理,如将123反转为321
public int reserve(int num){
int total;
while(num != 0){
int temp = num % 10;//取末位值
total = total * 10 + temp;
num = num / 10;//降位
}
return total;
}
public int reserve(int num){
int total;
while(num != 0){
int temp = num % 10;//取末位值
total = total * 10 + temp;
num = num / 10;//降位
}
return total;
}
本文标题:java int数的反转
本文链接:https://www.haomeiwen.com/subject/icftpftx.html
网友评论