#41648: c++解法+注意事項


yp11351280@yphs.tp.edu.tw (710-43)

學校 : 臺北市私立延平高級中學
編號 : 276272
來源 : [203.72.178.1]
最後登入時間 :
2024-11-07 17:46:46
a148. You Cannot Pass?! | From: [114.24.163.106] | 發表日期 : 2024-08-14 14:21

記得要把變數歸零喲!還有,可以用(總分  是否>  59*科目數)去判斷有沒有被當掉。

#include <iostream>
using namespace std;
int main()
{
    int a;
double c, d=0;
    while(cin>>a){
    for(int b=0;b<a;b++)
    {
        cin>>c;
d+=c;
}
(d>59*a)?cout<<"no"<<endl:cout<<"yes"<<endl;
d=0;
}
return 0;
}

 

 
ZeroJudge Forum