A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 大天 中级黑马   /  2016-7-24 22:31  /  473 人查看  /  3 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

如何求水仙花数?

3 个回复

倒序浏览
/* 求1000以内的水仙花数  分析:水仙花数是3位数,范围100-999           各位^3+十位^3+百位^3=三位数本身           */  class Demo {         public static void main(String[] args){                                  for (int x=100;x<1000 ;x++ ) {                         //取出个位、十位、百位上数值                         int ge = x%10;                         int shi = x/10%10;                         int bai = x/10/10%10;                                                  //立方和等于本身                         if(ge*ge*ge+shi*shi*shi+bai*bai*bai == x){                                 System.out.println(x);                         }                 }          } }
回复 使用道具 举报
/*
求1000以内的水仙花数

分析:水仙花数是3位数,范围100-999
          各位^3+十位^3+百位^3=三位数本身
       

*/

class Demo {
        public static void main(String[] args){
               
                for (int x=100;x<1000 ;x++ ) {
                        //取出个位、十位、百位上数值
                        int ge = x%10;
                        int shi = x/10%10;
                        int bai = x/10/10%10;
                       
                        //立方和等于本身
                        if(ge*ge*ge+shi*shi*shi+bai*bai*bai == x){
                                System.out.println(x);
                        }
                }

        }
}
回复 使用道具 举报
长知识啦
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马