首页 > 其他 > 详细

水仙花数

时间:2014-06-04 15:51:29      阅读:356      评论:0      收藏:0      [点我收藏+]

#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

水仙花数

原文:http://www.cnblogs.com/sky8-/p/3764771.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!