#26019: 不知哪裡錯了


joey13130905@gmail.com (笨呆瓜)

學校 : 淡江大學
編號 : 89206
來源 : [1.163.240.33]
最後登入時間 :
2023-11-06 14:53:44
b572. 忘了東西的傑克 -- 板橋高中練習題 | From: [110.26.12.63] | 發表日期 : 2021-07-12 15:29

#include<stdio.h>
#include<string>
using namespace std; 

int main(){
	char s[5];
	int a; 
	while(scanf("%d%*c",&a)!=EOF){
		gets(s);
		if((((s[2]-'0')-(s[0]-'0'))*60+((s[3]-'0')-(s[1]-'0')))>=(s[4]-'0'))
				puts("Yes");
		else{
			printf("%s\n","No");
		}
	}
	return 0; 
}
結果CE
 
#26020: Re:不知哪裡錯了


joey13130905@gmail.com (笨呆瓜)

學校 : 淡江大學
編號 : 89206
來源 : [1.163.240.33]
最後登入時間 :
2023-11-06 14:53:44
b572. 忘了東西的傑克 -- 板橋高中練習題 | From: [110.26.12.63] | 發表日期 : 2021-07-12 15:30

#0: 100% CE ()

/7843647/code_7843647.cpp: In function ‘int main()’:
/7843647/code_7843647.cpp:9:3: error: ‘gets’ was not declared in this scope
   gets(s);
   ^~~~
/7843647/code_7843647.cpp:9:3: note: suggested alternative: ‘fgets’
   gets(s);
   ^~~~
   fgets
 
#26022: Re:不知哪裡錯了


vic20050418@gmail.com (Wen Vic)

學校 : 國立臺灣科技大學
編號 : 153262
來源 : [114.136.159.95]
最後登入時間 :
2023-07-29 13:10:41
b572. 忘了東西的傑克 -- 板橋高中練習題 | From: [223.137.45.57] | 發表日期 : 2021-07-12 19:01

#0: 100% CE ()

/7843647/code_7843647.cpp: In function ‘int main()’:
/7843647/code_7843647.cpp:9:3: error: ‘gets’ was not declared in this scope
   gets(s);
   ^~~~
/7843647/code_7843647.cpp:9:3: note: suggested alternative: ‘fgets’
   gets(s);
   ^~~~
   fgets

你或許可以先自己debug 你這根本執行不了

 
#26023: Re:不知哪裡錯了


vic20050418@gmail.com (Wen Vic)

學校 : 國立臺灣科技大學
編號 : 153262
來源 : [114.136.159.95]
最後登入時間 :
2023-07-29 13:10:41
b572. 忘了東西的傑克 -- 板橋高中練習題 | From: [223.137.45.57] | 發表日期 : 2021-07-12 19:02

#include
#include
using namespace std; 

int main(){
	char s[5];
	int a; 
	while(scanf("%d%*c",&a)!=EOF){
		gets(s);
		if((((s[2]-'0')-(s[0]-'0'))*60+((s[3]-'0')-(s[1]-'0')))>=(s[4]-'0'))
				puts("Yes");
		else{
			printf("%s\n","No");
		}
	}
	return 0; 
}
結果CE
scanf("%d%*c",&a)!=EOF 這邊出問題 %*c ??

 

 
ZeroJudge Forum