输出所有的”水仙花数”,所谓“水仙花数”是指一个3位数,其各位数字立方和等于该数本身java
时间: 2023-12-03 07:25:59 浏览: 75
输出所有的水仙花数,所谓水仙花数是指一个3位数,其各个位上数字立方和等于其本身。
public class NarcissisticNumber {
public static void main(String[] args) {
for (int i = 100; i < 1000; i++) {
int a = i / 100;
int b = (i / 10) % 10;
int c = i % 10;
if (a * a * a + b * b * b + c * c * c == i) {
System.out.println(i);
}
}
}
}
阅读全文