#8511: 新手不懂哪裡錯


cynric717 (userer)


以下程式碼我在Dev c++執行是可以成功的 但是放上來他卻顯示NA
小弟是剛接觸程式的新手 請各位大大指教一下 
#include <stdio.h>

int main()
{
char a[10],b[10],c[10];
scanf("%s",&a);
scanf("%s",&b);
scanf("%s",&c);
printf("hello, %s\n",a);
printf("hello, %s\n",b);
printf("hello, %s\n",c);
return 0;
}
#8512: Re:新手不懂哪裡錯


yatun (MiGo)


原文恕刪...
題目一次只會輸入一個, 然後進入迴圈再問.