#include "stdafx.h"
#include "stdio.h"
int main()
{
while (true) {
char word[20];
gets_s(word);
printf("hello, %s\n",word);
}
return 0;
}
#include "stdafx.h"
#include "stdio.h"
int main()
{
while (true) {
char word[20];
gets_s(word);
printf("hello, %s\n",word);
}
return 0;
}
因為你放了while (true) {} 他會一直等你再輸入東西 這樣對評分系統來說 你超時了