水仙花數是指一個 n 位數(n≥3),它的每個位上的數字的 n 次冪之和等于它本身。在 Java 中,我們可以使用循環和條件判斷來找到并輸出所有的水仙花數。
以下是一個 Java 程序示例,用于輸出所有的水仙花數:
public class Main {
public static void main(String[] args) {
for (int i = 100; i <= 999; i++) {
int a = i / 100; // 獲取百位數
int b = (i % 100) / 10; // 獲取十位數
int c = i % 10; // 獲取個位數
if (i == a * a * a + b * b * b + c * c * c) {
System.out.println(i);
}
}
}
}
運行這個程序,你將看到所有的水仙花數:
153
370
371
407