C语言求1到1000内的水仙花数求大神?

2024-11-18 18:21:44
推荐回答(2个)
回答1:

#include

int main()

{

    int i,a,b,c;

    for(i=100;i<1000;i++)

{

a=i/100;

b=i/10%10;

c=i%10;

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

printf("%d ",i);

}

printf("\n");

system("pause");

    return 0;    

}

回答2:

代码如下,请采纳

#include 
main()
{
int a,b,c;
printf("water flower number is:");
for(int i=100;i<1000;i++)
{
 a=i/100;
 b=i/10%10;
 c=i%10;
 if(a*100+b*10+c==a*a*a+b*b*b+c*c*c)
  printf("%-5d",i);
}
printf("\n");
}