Java打印水仙花数
时间: 2023-08-01 17:06:31 浏览: 102
打印水仙花数JAVA代码
水仙花数是指一个三位数,其各位数字的立方和等于该数本身。以下是Java代码实现:
```java
public class DaffodilNumber {
public static void main(String[] args) {
for (int i = 100; i < 1000; i++) {
int a = i / 100; //获取百位数
int b = i % 100 / 10; //获取十位数
int c = i % 10; //获取个位数
if (a * a * a + b * b * b + c * c * c == i) {
System.out.println(i + "是水仙花数");
}
}
}
}
```
以上代码的输出结果为:
```
153是水仙花数
370是水仙花数
371是水仙花数
407是水仙花数
```
阅读全文