数字颠倒
程序员文章站
2022-07-13 15:17:11
...
一、题目描述
输入一个整数,将这个整数以字符串的形式逆序输出
程序不考虑负数的情况,若数字含有0,则逆序形式也含有0,如输入为100,则输出为001
二、代码实现
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
while (sc.hasNext()) {
int input = sc.nextInt();
//对于最高位为0的情况,即input == 0, 不可能有0123
if (input == 0) {
System.out.println(0);
continue;
}
//对于最高位不为0的情况
while (input != 0) {
System.out.print(input % 10);
input = input / 10;
}
}
sc.close();
}
}
下一篇: 数字颠倒