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

水仙花之数

时间:2017-04-16 19:01:41      阅读:124      评论:0      收藏:0      [点我收藏+]

标签:math   string   水仙花   rgs   等于   public   void   print   i++   

求所有水仙花数,它每位上的数子的3次幂之和等于它本身。(一定是一个三位数)
*
* */
public static void main(String[] args){    、、一定要知道是几位数。
for(int i=100;i<=999;i++){
int ge=i%10;
int shi=i%100/10;
int bai=i/100; //int bai=i%1000/100
int b=(int)(Math.pow(ge, 3)+Math.pow(shi, 3)+Math.pow(bai, 3));//math.pow( , )  那个数的几次方
if(b==i){
System.out.println("三位数的水仙花数有"+i);
}
}

}

水仙花之数

标签:math   string   水仙花   rgs   等于   public   void   print   i++   

原文地址:http://www.cnblogs.com/lijava/p/6719496.html

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