#11860: 測試可但解題為何不可 雖然超白癡但還是問問


nottherealeric (idiotic novice)

學校 : 臺北市私立薇閣高級中學
編號 : 65426
來源 : [140.112.238.147]
最後登入時間 :
2017-11-08 11:24:24
a001. 哈囉 -- Brian Kernighan | From: [1.171.99.213] | 發表日期 : 2017-04-01 21:32

#include <iostream>
using namespace std;

int main(){
for(int i=1; i<=3; i++){
char a[100];
cin >> a;
cout << "hello, " << a << '\n';

}

return 0;
}

 
#11874: Re:測試可但解題為何不可 雖然超白癡但還是問問


nkavengertree (LaG)

學校 : 不指定學校
編號 : 62501
來源 : [49.216.191.28]
最後登入時間 :
2021-11-21 03:06:49
a001. 哈囉 -- Brian Kernighan | From: [163.30.20.150] | 發表日期 : 2017-04-06 09:35

#include
using namespace std;

int main(){
for(int i=1; i<=3; i++){
char a[100];
cin >> a;
cout << "hello, " << a << '\n';

}

return 0;
}

資料可能不只三個
OR

字串長度超過100都可能發生問題

 
ZeroJudge Forum