水仙花数
作者:互联网
水仙花数
水仙花数是三位数,每个数的三次方相加,得到的和与原来的数一样。这样的数就是水仙花数。
public class Shuixianhua {
public static void main(String args[]) {
System.out.println("水仙花数:");
for(int i = 100;i <= 999; i++) {
int first = i/100;
int second = i/10%10;
int third = i%10;
if(i == Math.pow(first, 3)+Math.pow(second, 3)+Math.pow(third, 3)) {
System.out.print(i+" ");
}
}
}
}
标签:int,System,public,static,三次方,水仙花 来源: https://blog.csdn.net/weixin_43296982/article/details/115386101