输出所有的“水仙花数”,所谓“水仙花数”是指一个3位数﹐其各位数字立方和等于该数本身。例如,153是水仙花数,因为153=13+53+33
时间: 2023-12-03 16:39:43 浏览: 65
输出所有的水仙花数,所谓水仙花数是指一个3位数,其各个位上数字立方和等于其本身。
以下是Java语言输出所有的水仙花数的代码:
```java
public class Main {
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 + "是水仙花数");
}
}
}
}
```
输出结果为:
```
153是水仙花数
370是水仙花数
371是水仙花数
407是水仙花数
```
阅读全文