2010.水仙花数

Posted huoyuying

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了2010.水仙花数相关的知识,希望对你有一定的参考价值。

#include<stdio.h>

int main(){

         int m,n,i,a,b,c,s;

         scanf("%d%d",&m,&n);

         for(i=m;i<=n;i++){

                   a=i/100;b=i/10-a*10;c=i%10;

                   s=a*a*a+b*b*b+c*c*c;

                   if(s==i)printf("%d ",i);

         }

         return 0;

}

以上是关于2010.水仙花数的主要内容,如果未能解决你的问题,请参考以下文章

hdu 2010 水仙花数

HDU2010 水仙花数进制

杭电ACM2010--水仙花数

2010.水仙花数

HDOJ2010_水仙花数

蓝桥基础练习 特殊的数字 BASIC-7 (水仙花数)