0 Judge
Code: 0
int Answer(int a,int b,int c);
函數內容為從a,b,c三數找最大值,並回傳int Answer(int a,int b,int c);
就可以,當你在本機執行的時候可以使用鍵盤輸入,並且從螢幕上看到輸出#endif
底下,否則將有無法預期的錯誤,並且請在int Answer(int a,int b,int c);
之前引入你需要的標頭檔#endif
下面,不可以出現int main()
否則會得到CE#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
}