码迷,mamicode.com
首页 > 其他好文 > 详细

统计水仙花数有多少个?

时间:2019-12-31 01:09:09      阅读:712      评论:0      收藏:0      [点我收藏+]

标签:循环   --   获取   ==   count   code   举例   就是   int   

水仙花数: 所谓的水仙花数是指一个三位数,其各位数字的立方和等于该数本身。 举例:153就是一个水仙花数。 153 =1x1x1+5x5x5+3x3x3
分析:

0)定义一个统计变量
     int count = 0 ;
1)水仙花:就是三位数 ---->for循环 循环中的变量为x  100 ~999
    特点: 每个位的数据的立方和是当前数据本身
        153 

2)获取每个位上的数据
        int ge= x % 10 ;
        int shi = x /10 % 10 ;
        int bai = x /10 /10 % 10 ;

3)每个位上的数据满足条件
    x == ge*ge*ge+shi*shi*shi+bai*bai*bai

4)满足上面的条件 :count++
5)for循环的输出count值
//定义统计变量
int count = 0 ;

//for循环
for(int x = 100 ; x < 1000; x ++){
    //获取每个位上的数据;
    int ge= x % 10 ;
    int shi = x /10 % 10 ;
    int bai = x /10 /10 % 10 ;

    //满足条件
    if(x==(ge*ge*ge+shi*shi*shi+bai*bai*bai)){
        //输出水仙花数
        System.out.println(x) ;
        //统计变量++
        count++ ;
    }
}
System.out.println("所有的水仙花数共有:"+count+"个");

统计水仙花数有多少个?

标签:循环   --   获取   ==   count   code   举例   就是   int   

原文地址:https://blog.51cto.com/14651315/2463206

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!