我一次性AC这道题,用时5分钟。
#include<iostream>
using namespace std;
int max(int x,int y)
{
if(x>y)
return x;
else
return y;
}
int main()
{
// freopen("xxx.in","r",stdin);
// freopen("yyy.out","w",stdout);
int x,y;
cin >> x >> y;
cout << max(x,y);
// fclose(stdin);
// fclose(stdout);
return 0;
}