public class TestNNN {
static int a = 0;
static int b = 0;
static int c = 0;
public static void main(String[] args) {
/**
* 水仙花数
* 1. 一定是3位数
* 2. 每一位的立方,加起来恰好是这个数本身,比如153=1*1*1+5*5*5+3*3*3
*/
for (int i = 100; i < 999; i++) {
a = i / 100; //百位
b = i / 10 % 10; //十位
c = i % 10; //个位
double sum = Math.pow(a, 3) + Math.pow(b, 3) + Math.pow(c, 3);
if (sum == (double) i) {
System.out.println("水仙花数有:" + i);
}
}
}
}