#10173: 為什麼都WA?


selina24228 (00)

學校 : 國立臺南女子高級中學
編號 : 45433
來源 : [140.112.238.124]
最後登入時間 :
2021-03-03 11:03:02
a148. You Cannot Pass?! | From: [223.142.141.157] | 發表日期 : 2015-08-25 12:34

請各位大神幫我看看錯在哪裡

#include<iostream>

using namespace std;

int main(){

double n,score;

while(cin>>n){

double ave=0;

for(int i=0;i<n;i++){

cin>>score;

ave+=score;

}

ave/=n;

if(ave>=59) {

cout<<"no"<<endl;

}

else cout<<"yes"<<endl;

}

return 0;

}

 

 
ZeroJudge Forum