我的水仙花 1239

  • Post author:
  • Post category:其他


ACM 水仙花

#include <stdio.h>

#include <math.h>

int main()

{

int m,n,a,b,c,t,wat;

while( scanf(“%d %d”,&m,&n)!=EOF)

{

if(m>n){t=m;m=n;n=t;}

t=0;

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

{

a=m/100;

b=(m/10)%10;

c=m%10;

if(m==a*a*a+b*b*b+c*c*c)

{

if(t>0)

{printf(” “);}

printf(“%d”,m);

t++;

}

}

if(t>0) {printf(“\n”);}

if(t==0){printf(“no\n”);}

}

return 0;

}



版权声明:本文为khn64原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。