#29723: WA 是錯在哪???


qweasd555 (Ooo)

學校 : 國立臺南女子高級中學
編號 : 170882
來源 : [123.252.108.10]
最後登入時間 :
2023-03-24 10:50:44
a148. You Cannot Pass?! | From: [59.120.102.253] | 發表日期 : 2022-03-25 09:48

#include <iostream>

using namespace std;

 

int main(){

int n;

while(cin>>n){

int grade,total;

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

cin>>grade;

total+=grade;

}

if(total<=59*n){

cout<<"yes"<<endl;

}

else{

cout<<"no"<<endl;

  }

}

 return 0;    

}

 
#29725: Re:WA 是錯在哪???


cges30901 (cges30901)

學校 : 不指定學校
編號 : 30877
來源 : [101.136.203.77]
最後登入時間 :
2024-04-07 15:34:14
a148. You Cannot Pass?! | From: [39.8.168.5] | 發表日期 : 2022-03-25 11:13


int grade,total;


total沒有初始化

 
ZeroJudge Forum