#40379: 成績指標:請問一下我這個段程式要怎麼(目前是CE)


tingenhc@gmail.com (郭婷婷)

學校 : 不指定學校
編號 : 272531
來源 : [42.73.184.76]
最後登入時間 :
2024-05-21 12:36:02
b964. 1. 成績指標 -- 2016年3月apcs | From: [59.115.190.43] | 發表日期 : 2024-05-16 06:13

#include <iostream>
#include <algorithm>
using namespace std;

int main()
{
                  
 int n,x,b=0,s=0;
 string bb,ss;
 cin>>n;
 int a[n];
 for(int i=0;i<n;i++)
    cin>>a[i]>>x;

 sort(a,a+n);

 for(int i=0;i<n;i++)
 {
      cout<<a[i]<<" ";
      if(a[i]<60)
      {
       b=a[i];
       if(b==a[n-1])
        {
             s=999;
         }   
         else
          s=a[i+1];
       }
 }
 cout<<endl;

 if(b==0)
 {  
    bb="best case";
    cout<<bb<<endl;
 }
 if(s==999)
 {
    ss="worst case";
    cout<<ss;
 }
}

 
ZeroJudge Forum