首页 > 代码库 > 水仙花之数

水仙花之数

求所有水仙花数,它每位上的数子的3次幂之和等于它本身。(一定是一个三位数)
*
* */
public static void main(String[] args){    、、一定要知道是几位数。
for(int i=100;i<=999;i++){
int ge=i%10;
int shi=i%100/10;
int bai=i/100; //int bai=i%1000/100
int b=(int)(Math.pow(ge, 3)+Math.pow(shi, 3)+Math.pow(bai, 3));//math.pow( , )  那个数的几次方
if(b==i){
System.out.println("三位数的水仙花数有"+i);
}
}

}

水仙花之数