java打印水仙花数
时间: 2023-11-16 12:54:51 浏览: 119
好的,以下是 Java 打印水仙花数的代码:
```java
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);
}
}
}
}
```
这段代码会输出所有三位数的水仙花数。
相关问题
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是水仙花数
```
用Java打印水仙花数
以下是用Java打印水仙花数的代码:
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 (i == a * a * a + b * b * b + c * c * c) {
System.out.println(i);
}
}
}
}
阅读全文