#8248: 新手~~求大神幫忙看為什麼不會過


gogoa306 (letsgo)


#include <stdlib.h>
#include <stdio.h>

int main(void)
{
    char INPUT_1[20]="",INPUT_2[20]="",INPUT_3[20];
    scanf("%s",INPUT_1);
    scanf("%s",INPUT_2);
    scanf("%s",INPUT_3);
    printf("hello, %s\n",INPUT_1);
    printf("hello, %s\n",INPUT_2);
    printf("hello, %s\n",INPUT_3);
    return(0);
}