#5517: 為什麼都過不了?


CSE911505 (小 弈 ★)

學校 : 國立臺中高級工業職業學校
編號 : 15763
來源 : [218.170.57.155]
最後登入時間 :
2014-02-28 00:40:35
a148. You Cannot Pass?! | From: [218.170.53.129] | 發表日期 : 2011-08-05 18:48

#include<iostream>
using namespace std;
int main()
{
  long long tot[1000]={0};
  int a;
  while(cin>>a)
  {
     int b=0;
     float c;
     for(int i=1;i<=a;i++)
     {
       cin>>tot[i];
       b=b+tot[i];
     }
     c=b/a;
     if(c<59)cout<<"yes"<<endl;
     else cout<<"no"<<endl;
  }

return 0;

}

 

 

到底錯在哪裡押?:(
誰來幫幫我~

 
#5520: Re:為什麼都過不了?


morris1028 (碼畜)

學校 : 國立花蓮高級中學
編號 : 3529
來源 : [114.37.59.62]
最後登入時間 :
2021-07-12 19:00:43
a148. You Cannot Pass?! | From: [118.161.209.97] | 發表日期 : 2011-08-05 20:38

#include
using namespace std;
int main()
{
  long long tot[1000]={0};
  int a;
  while(cin>>a)
  {
     int b=0;
     float c;
     for(int i=1;i<=a;i++)
     {
       cin>>tot[i];
       b=b+tot[i];
     }
     c=b/a;
     if(c<59)cout<<"yes"<     else cout<<"no"<  }

return 0;

}

 

 

到底錯在哪裡押?:(
誰來幫幫我~

「老師說,如果平均大於 59 你就過關了」
ave>59 no
ave<=59 yes
 
#5553: Re:為什麼都過不了?


b546mmpm (James Lin)

學校 : 國立中央大學
編號 : 15883
來源 : [114.34.5.152]
最後登入時間 :
2023-06-09 21:28:08
a148. You Cannot Pass?! | From: [118.168.117.91] | 發表日期 : 2011-08-10 07:03

#include
using namespace std;
int main()
{
  long long tot[1000]={0};
  int a;
  while(cin>>a)
  {
     int b=0;
     float c;
     for(int i=1;i<=a;i++)
     {
       cin>>tot[i];
       b=b+tot[i];
     }
     c=b/a;
     if(c<59)cout<<"yes"<     else cout<<"no"<  }

return 0;

}

 

 

到底錯在哪裡押?:(
誰來幫幫我~

如果你的a.b是整數 會遇到轉換的問題 會連c也是整數
 
#5554: Re:為什麼都過不了?


CSE911505 (小 弈 ★)

學校 : 國立臺中高級工業職業學校
編號 : 15763
來源 : [218.170.57.155]
最後登入時間 :
2014-02-28 00:40:35
a148. You Cannot Pass?! | From: [218.170.53.38] | 發表日期 : 2011-08-10 16:01

#include
using namespace std;
int main()
{
  long long tot[1000]={0};
  int a;
  while(cin>>a)
  {
     int b=0;
     float c;
     for(int i=1;i<=a;i++)
     {
       cin>>tot[i];
       b=b+tot[i];
     }
     c=b/a;
     if(c<59)cout<<"yes"<     else cout<<"no"<  }

return 0;

}

 

 

到底錯在哪裡押?:(
誰來幫幫我~

「老師說,如果平均大於 59 你就過關了」
ave>59 no
ave<=59 yes

 

 

  可是還是WA耶~

  怎麼會這樣:(

 
ZeroJudge Forum