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

水仙花数

时间:2014-07-27 10:12:22      阅读:196      评论:0      收藏:0      [点我收藏+]

标签:

bubuko.com,布布扣

 

#include <iostream>
using namespace std;
int main( )
{  

  int n,a,b,c;
     for (a=1; a<=9;a++)
         for (b=0; b<=9; b++)
              for (c=0; c<=9; c++)
         {   

n=a*100+b*10+c;

 if (n==a*a*a+b*b*b+c*c*c)             cout<<n<<endl;
       } 
       system("pause");

   return 1;
}

 

 

#include <iostream>
using namespace std;
int main( )

int i,a,b,c;


 for (i=100; i<=999; i++)
 {

 

 a=i/100; 

b=i/10%10; 

c=i%10;
  if (a*a*a+b*b*b+c*c*c==i)           cout<<i<<endl;
 }
 system("pause"); return 1;

 

水仙花数

标签:

原文地址:http://www.cnblogs.com/wc1903036673/p/3870534.html

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