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

水仙花数

时间:2017-12-25 23:22:06      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:str   out   水仙花数   pac   log   nbsp   static   body   接下来   

水仙花数(Narcissistic number)是自幂数的一种,严格来说3位数的3次幂数才称为水仙花数。例如:1^3 + 5^3+ 3^3 = 153。

接下来通过代码求100-999之间的水仙花数。 

public class Demo1 {
public static void main(String[] args) {
int a=0,b=0,c=0;
System.out.println("水仙花数有:");
for(int i=100;i<1000;i++){
a=i/100;//百位数
b=(i%100)/10;//十位数
c=(i%100)%10;//个位数
a=a*a*a;
b=b*b*b;
c=c*c*c;
if((a+b+c)==i){
System.out.println("  "+i);
}
}
}
}

上述代码运行结果如下: 

水仙花数有:

 

  153
  370
  371
  407

 

水仙花数

标签:str   out   水仙花数   pac   log   nbsp   static   body   接下来   

原文地址:https://www.cnblogs.com/lizhangyong/p/8111409.html

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