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

水仙花

时间:2014-05-31 14:22:33      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:c   class   blog   code   a   int   

类似 153=1^3+5^3+3^3  这样的数就叫做水仙花数

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <stdio.h>
int main(void){
    int bw,sw,gw;
    int i;
    int count=0;
    for(i=100;i<=999;i++){
        bw=i/100;   //取出百位上的数
        sw=i%100/10;//取出十位上的数
        gw=i%10;    //取出个位上的数
        if(bw*bw*bw+sw*sw*sw+gw*gw*gw==i){
            printf("%d\n",i);
            count++;
        }
    }
     
    printf("100-999有%d个水仙花数\n",count);
}

  

 

水仙花,布布扣,bubuko.com

水仙花

标签:c   class   blog   code   a   int   

原文地址:http://www.cnblogs.com/u635883/p/3761994.html

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