码迷,mamicode.com
首页 > 编程语言 > 详细

C语言:求出0~999之间的所有“水仙花数”并输出

时间:2015-10-07 19:01:37      阅读:290      评论:0      收藏:0      [点我收藏+]

标签:水仙花   c语言   求出0~999之间的所有“水仙花数”并输出   

#include <stdio.h>

int main()

{

 int num,unit,ten,hundred;

 int i=0;

 printf("水仙花数:\n");

 for(num=100;num<=999;num++)

 {

  hundred=num/100;

  ten=(num-hundred*100)/10;

  unit=num-hundred*100-ten*10;

 

 if(num==hundred*hundred*hundred+ten*ten*ten+unit*unit*unit)

 {

  printf("%d \n",num);

  i=i++;

 } 

 

 }

 printf("i=%d",i);

 return 0;

}


        求出0~999之间的所有“水仙花数”并输出:

   “水仙花数”是指一个三位数,其各位数字的立方和确好等于该数本身,如;153=1+5+3?,则153是一个“水仙花数”。

/*
在数论中,水仙花数(Narcissistic number)也称为自恋数、自幂数、阿姆斯壮数或阿姆斯特朗数(Armstrong number),是指一N位数,其各个数之N次方和等于该数。
例如153、370、371及407就是三位数的水仙花数,其各个数之立方和等于该数:
153 = 1^3 + 5^3 + 3^3。
370 = 3^3 + 7^3 + 0^3。
371 = 3^3 + 7^3 + 1^3。
407 = 4^3 + 0^3 + 7^3。
*/

C语言:求出0~999之间的所有“水仙花数”并输出

标签:水仙花   c语言   求出0~999之间的所有“水仙花数”并输出   

原文地址:http://10740184.blog.51cto.com/10730184/1700645

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