"若你被當了,請輸出「yes」,否則輸出「no」。"
不是應該被當輸出"yes" 沒被當輸出"no"??
"若你被當了,請輸出「yes」,否則輸出「no」。"
不是應該被當輸出"yes" 沒被當輸出"no"??
其實題目是大於等於59...剛剛試過了
/**********************************************************************************/
/* Problem: a148 "You Cannot Pass?!" from */
/* Language: CPP (353 Bytes) */
/* Result: AC(4ms, 476KB) judge by this@ZeroJudge */
/* Author: saitor362320 at 2012-08-21 21:16:53 */
/**********************************************************************************/
#include<cstdio>
#include<iostream>
using namespace std;
int main()
{
int time;
while(cin>>time){
double diff = 0.0;
for(int i=0;i<time;++i){
double score;
cin>>score;
diff += (score-59.0);
}
//cout << diff << endl;
if(diff<=0)
cout << "yes" << endl;
else
cout << "no" << endl;
}
return 0;
}
"若你被當了,請輸出「yes」,否則輸出「no」。"
不是應該被當輸出"yes" 沒被當輸出"no"??
其實題目是大於等於59...剛剛試過了
應該說紀錄平均的那個變數要用float 或是 double,int型 /int型 的結果會是無條件捨去後的。
"若你被當了,請輸出「yes」,否則輸出「no」。"
不是應該被當輸出"yes" 沒被當輸出"no"??
其實題目是大於等於59...剛剛試過了
應該說紀錄平均的那個變數要用float 或是 double,int型 /int型 的結果會是無條件捨去後的。