c语言求100——999内的水仙花数

1.求出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。
*/

#include
#include
#include
int main() 
{
 int a, b, c, i, t;
 for(i=100;i<=999;i++)
 {
  a = i / 1 % 10;
  b = i / 10 % 10;
  c = i / 100 % 10;
  t = pow(a, 3) + pow(b, 3) + pow(c, 3);
  if (i == t)
   printf("%d是水仙花数\n", i);
    }
 system("pause");
 return 0;
}

你可能感兴趣的:(c语言求100——999内的水仙花数)