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

水仙花数(详细2

时间:2014-08-13 00:29:24      阅读:265      评论:0      收藏:0      [点我收藏+]

标签:blog   http   io   for   2014   log   c++   sp   

 

 bubuko.com,布布扣

#include <stdio.h>
int main( )
{
int a,b,c,s ;
s=0 ;
for(a=1; a<=9; a++)
for(b=0; b<=9; b++)
for(c=0; c<=9; c++)
if(a+b+c==10 || a+b+c==20 ) s++ ;

printf("%d\n",s);
}

 

 

 

bubuko.com,布布扣

**************************


#include <stdio.h>
int main( )
{
int a,b,c,s ;
s=0 ;
for(a=1; a<=9; a++)
for(b=0; b<=9; b++)
for(c=0; c<=9; c++)
if( (a+b+c)%10==0 ) s++ ;

printf("%d\n",s);
}

水仙花数(详细2,布布扣,bubuko.com

水仙花数(详细2

标签:blog   http   io   for   2014   log   c++   sp   

原文地址:http://www.cnblogs.com/2014acm/p/3908545.html

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