java求100-999之间的水仙花数(百位、十位和个位的立方和等于自身的数)
答案:2 悬赏:20 手机版
解决时间 2021-03-23 00:38
- 提问者网友:雪舞兮
- 2021-03-22 04:26
java求100-999之间的水仙花数(百位、十位和个位的立方和等于自身的数)
最佳答案
- 五星知识达人网友:撞了怀
- 2021-03-22 05:06
import java.math.*;
public class Test {
public static void main(String[]args){
int firstP;//千位的数字
int secondP;//百位的数字
int thirdP;//个位的数字
System.out.println("100到999的水仙花数有:");
for(int i = 100; i < 999; i++)
{
firstP = i/100;
secondP = i%100/10;
thirdP = i%10;
if(Math.pow(firstP,3)+Math.pow(secondP, 3)+Math.pow(thirdP, 3)==i)
System.out.print(i+"\t");
}
}
}
public class Test {
public static void main(String[]args){
int firstP;//千位的数字
int secondP;//百位的数字
int thirdP;//个位的数字
System.out.println("100到999的水仙花数有:");
for(int i = 100; i < 999; i++)
{
firstP = i/100;
secondP = i%100/10;
thirdP = i%10;
if(Math.pow(firstP,3)+Math.pow(secondP, 3)+Math.pow(thirdP, 3)==i)
System.out.print(i+"\t");
}
}
}
全部回答
- 1楼网友:duile
- 2021-03-22 05:49
下面是我用for和while同时实现的!!楼主请查看,不同的在告诉你!! public class narcissusnumber { public static void main(string[] args) { for (int n = 1; n <= 1000; n++) { int i = n / 100; //百位数 int j = (n - i * 100) / 10; //十位数 int k = n - i * 100 - j * 10; //个位数 if (n == i * i * i + j * j * j + k * k * k) { system.out.println("for水仙花" + n); } } int n = 1; while(n <= 1000) { int i = n / 100; //百位数 int j = (n - i * 100) / 10; //十位数 int k = n - i * 100 - j * 10; //个位数 if (n == i * i * i + j * j * j + k * k * k) { system.out.println("while水仙花" + n); } n++; } } }
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯