帮我看下这个是写错了还是思路错了
#include <stdio.h>
int main()
{
int x,y,z,s;
int s=x*100+y*10+z;
for(x=1,y=0,z=0;s<1000;s++)
{
if(s==x*x*x+y*y*y+z*z*z)
{
printf("水仙花数为:%d\n",s);
}
}
return 0;
}
#include <stdio.h>
int main()
{
int x,y,z,s;
int s=x*100+y*10+z;
for(x=1,y=0,z=0;s<1000;s++)
{
if(s==x*x*x+y*y*y+z*z*z)
{
printf("水仙花数为:%d\n",s);
}
}
return 0;
}
2020-03-08
举报