经典算法-“水仙花”3位数的个位,十位,百位的立方和等于原来的数字

/**
 * 题目:打印出所有的 "水仙花数 ",所谓 "水仙花数 "是指一个三位数,其     各位数字立方和等于该数本身。例如:153是一个 "水仙花
 * 数 ",因为153=1的三次方+5的三次方+3的三次方。
 * @author xiaoyu
 */
public class ShuiXianHua {

       public static void main(String[] args) {

            for(int i=100;i<1000;i++){
                int g = i%10;
                int s = i/10%10;
                int b = i/100%10;

                double total = Math.pow(g, 3)+Math.pow(s, 3)+Math.pow(b, 3);
                if((int)total==i){
                    System.out.println("数字"+i+"就是水仙花体");
                }
            }
       }
}

你可能感兴趣的:(经典-算法)