PHP
·
发表于 5年以前
·
阅读量:8295
水仙花数(Narcissistic number)也被称为超完全数字不变数(pluperfect digital invariant, PPDI)、自恋数、自幂数、阿姆斯壮数或阿姆斯特朗数(Armstrong number),水仙花数是指一个 3 位数,它的每个位上的数字的 3次幂之和等于它本身(例如:1^3 + 5^3+ 3^3 = 153)。
public class shuixianhuashu {
public static void main(String[] args) {
// TODO 自动生成的方法存根
for (int i = 100; i < 1000; i++) {
int a = i / 100;//得到百位数
int b = i / 10 % 10;//得到十位数
int c = i % 10;//得到个位数
//求和雨原来得数比较结果是否相等
if (Math.pow(a, 3) + Math.pow(b, 3) + Math.pow(c, 3) == i) {
System.out.println("该数字是水仙花数:" + i);
}
}
}
}