#9072: 為何NA,請各位大大指教~


cozy46th (unknown)


#include<stdio.h>

int main(){
  while(1==1){
    char s[20];
    gets (s);
    printf("hello, %s\n",s);
  }
  return 0;
}
#9075: Re:為何NA,請各位大大指教~


anandrewboy70900 (ShowTsai)


while(1==1)

這樣會變成無窮迴圈

程式無法結束

才會TLE逾時~