为什么这样写不行,哪里错了
#include <stdio.h>
int main()
{
//定义三位数num,个位数sd,十位数td,百位数hd
int num, sd, td, hd;
num = sd + td * 10 + hd * 100
//循环所有三位数
for(sd = 1,;sd < 10;sd++)
{
for(td=1;td<10;td++)
{
for(hd=1;hd<10;hd++)
{
if(num==(hd*hd*hd + td*td*td + sd*sd*sd))
{
printf("水仙花数字:%d\n", num);
}
}
}
}
return 0;
}