/*【程序3】
题目:打印出所有的"水仙花数",所谓"水仙花数"是指一个三位数,其各位数字立方和等于该数本身。例如:153是一个"水仙花数",因为153=1的三次方+5的三次方+3的三次方。
程序分析:利用for循环控制100-999个数,每个数分解出个位,十位,百位。*/
class Prog3 {
public static void main(String[] args) {
System.out.println("水仙花数:"+ShuiXianHua());
}
public static int ShuiXianHua () {// 嵌套三个for循环
int count = 0;
for (int x = 1;x<=9 ; x++) {
for (int y = 0;y<=9 ;y++ ) {
for (int z = 0;z<=9; z++) {
if(100*x+10*y+z == x*x*x+y*y*y+z*z*z){
System.out.println(100*x+10*y+z);
count++;
}
}
}
}
return count;
}
} |
|