java 打印水仙花数

package cn.lijun.demo6;

public class Test2 {
    public static void main(String[] args) {
        for(int i=100;i<1000;i++){
            int bai=i/100%10;
            int shi=i/10%10;
            int ge=i%10;
            if(i==bai*bai*bai+shi*shi*shi+ge*ge*ge){
                System.out.println(i);
            }
        }

    }

}

 

posted @ 2019-03-13 19:14  芯-觞  阅读(540)  评论(0编辑  收藏  举报