写一个水仙花数Java代码
时间: 2024-05-03 22:17:51 浏览: 106
水仙花数是指一个三位数,它的每个位上的数字的立方和等于它本身。例如:153是一个水仙花数,因为153=1³+5³+3³。
以下是Java代码实现:
```java
public class NarcissisticNumber {
public static void main(String[] args) {
for (int i = 100; i <= 999; 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 + " 是水仙花数");
}
}
}
}
```
输出结果:
```
153 是水仙花数
370 是水仙花数
371 是水仙花数
407 是水仙花数
```
相关问题
写一个水仙花数的Java代码
public class NarcissisticNumber {
public static void main(String[] args) {
for (int i = 100; i <= 999; 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代码:
```
public class NarcissisticNumber {
public static void main(String[] args) {
int num, sum, temp;
System.out.println("水仙花数有:");
for (int i = 100; i < 1000; i++) {
num = i;
sum = 0;
while (num > 0) {
temp = num % 10;
sum += temp * temp * temp;
num /= 10;
}
if (sum == i) {
System.out.print(i + " ");
}
}
}
}
```
该代码会输出所有三位数的水仙花数。一个三位数的水仙花数是指,该数每位数字的立方和等于该数本身。例如,153 是一个三位数的水仙花数,因为 $1^3 + 5^3 + 3^3 = 153$。
阅读全文