#include
void ema(void);
int main(void)
{
int i=1;
while (i≤3)
{
ena();
i++;
}
printf("Which!");
return 0;
}
void ema(void)
{
printf("for\n");
}
請問大神們,我這裡哪裡出錯了,感謝!
#include /** #include /
void ema(void);
int main(void)
{
int i=1;
while(i<=3) /* while (i≤3) /
{
ema(); /* ena(); */
i++;
}
printf("Which!");
return 0;
}
void ema(void)
{
printf("for\n");
}
上面代碼 改正了錯誤,你的原來的在後面注釋裡面