题目描述:
输出所有的水仙花数,把谓水仙花数是指一个数3位数,其各各位数字立方和等于其本身
解题思路:
例如: 153 = 1*1*1 + 3*3*3 + 5*5*5
代码:
public class Main { public static void main(String[] args) { for(int i=100;i<1000;i++){ int a=i/100; int b=i/10%10; int c=i%10; if(i==(Math.pow(a,3)+Math.pow(b,3)+Math.pow(c,3))){ System.out.println(i); } } } }