输出100-999的所有水仙花数
作者:互联网
public class flower {
public static void main(String[] args) {
/*
水仙花数每位数字的3次方之和等于他本身
如153=1+5^3+3^3
输出100到999
*/
int z,x,c;
for (int i = 100; i <=999 ; i++) {
z=i/100;
x=i%100/10;
c=i%10;
if (i==Math.pow(z,3)+Math.pow(x,3)+ Math.pow(c,3)){
System.out.println(i+"\t");
}
}
}
}
标签:int,pow,999,public,100,水仙花,Math 来源: https://www.cnblogs.com/xixihaha999/p/16323727.html