用java编写水仙花数代码
时间: 2024-05-15 21:15:22 浏览: 86
以下是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 (a * a * a + b * b * b + c * c * c == i) {
System.out.println(i + "是水仙花数");
}
}
}
}
```
运行结果:
```
153是水仙花数
370是水仙花数
371是水仙花数
407是水仙花数
```
相关问题
用java编写水仙花数
水仙花数是指一个n位数(n≥3),它的每个位上的数字的n次幂之和等于它本身。例如,153是一个水仙花数,因为1^3 + 5^3 + 3^3 = 153。
以下是用Java编写水仙花数的示例代码:
```java
public class NarcissisticNumber {
public static void main(String[] args) {
int start = 100;
int end = 999;
System.out.println("水仙花数:");
for (int i = start; i <= end; i++) {
if (isNarcissisticNumber(i)) {
System.out.println(i);
}
}
}
// 判断一个数是否为水仙花数
public static boolean isNarcissisticNumber(int num) {
int sum = 0;
int temp = num;
int length = String.valueOf(num).length();
while (temp != 0) {
int digit = temp % 10;
sum += Math.pow(digit, length);
temp /= 10;
}
return sum == num;
}
}
```
这段代码会输出所有的三位数水仙花数。你可以根据需要修改`start`和`end`的值来输出其他范围内的水仙花数。
编写一个java程序水仙花数代码
以下是 Java 代码实现水仙花数:
```
public class NarcissisticNumber {
public static void main(String[] args) {
for (int i = 100; i < 100; 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);
}
}
}
}
```
该程序会输出所有三位数的水仙花数。
阅读全文