#17831: 自己執行程式時有符合題目,但繳交時卻不給過


testTC (testTC)

學校 : 國立彰化師範大學附屬高級工業職業學校
編號 : 97082
來源 : [36.232.90.176]
最後登入時間 :
2021-12-08 12:11:00
a001. 哈囉 -- Brian Kernighan | From: [101.136.67.183] | 發表日期 : 2019-05-23 23:30

#include <stdio.h>
int main()
{
int s[9999] ;
scanf("%s", &s);
printf("hello, %s\n", s);
return 0 ;
}

 
#17835: Re:自己執行程式時有符合題目,但繳交時卻不給過


aaron1005.huang@gmail.com (Aaron Huang)

學校 : 中原大學
編號 : 89263
來源 : [223.140.238.45]
最後登入時間 :
2022-02-03 16:47:49
a001. 哈囉 -- Brian Kernighan | From: [140.122.107.190] | 發表日期 : 2019-05-24 19:18

#include
int main()
{
int s[9999] ;
scanf("%s", &s);
printf("hello, %s\n", s);
return 0 ;
}

 

line 5: scanf( "%s",s );

 

this program can only executed once, try this loop:

while(scanf("%s",s)!=EOF){

//put your program here

}



this loop will wait until the user input a string,then the code will repeat again and again

 

*i'm sorry that i can't reply you by using chinese,the linus don't let me change language  :(

 
ZeroJudge Forum