概述
输出一个整数的每一位。
如:1234的每一位是4,3,2,1 。
个位:1234 % 10 = 4
十位:1234 / 10 = 123 123 % 10 = 3
百位:123 / 10 = 12 12 % 10 = 2
千位: 12 / 10 = 1
代码
ublic static void func(int n) {
while (n != 0) {
System.out.println(n % 10);
n /= 10;
}
}
public static void main(String[] args) {
func(123);
}
输出结果