27. 互動題練習

0 Judge

Code: 0


互動題練習

  • 請好好練習本題,熟悉此題型
  • 本題會要你實作一個函數int Answer(int a,int b,int c);函數內容為從a,b,c三數找最大值,並回傳
  • 底下會給你一份CODE,這份CODE可以方便你測試,你只需要實作int Answer(int a,int b,int c);就可以,當你在本機執行的時候可以使用鍵盤輸入,並且從螢幕上看到輸出
  • 寫這題要注意的是請務必將程式碼寫在#endif底下,否則將有無法預期的錯誤,並且請在int Answer(int a,int b,int c);之前引入你需要的標頭檔
  • 務必注意,在#endif下面,不可以出現int main()否則會得到CE
  • 在函數中,不可以輸出任何東西,否則你會得到WA

參考程式碼

#ifndef EVAL
#include<iostream>
using std::cin;
using std::cout;
using std::endl;
int Answer(int a,int b,int c);

int main()
{
    int a,b,c;
    cin>>a>>b>>c;
    cout<<Answer(a,b,c)<<endl;
}
#endif
/*================================================================*/
/*================================================================*/
/*================================================================*/
/*================================================================*/
/*Write Your Program Here*/
/*Notice: You should include header for yourself*/

#include<iostream>
using namespace std;
int Answer(int a,int b,int c)
{
    //Write Your Program Here
}

Judge Setting

run-time limit: 1000 ms
memory limit: 130000 byte
測資數量: 0