max函数
2024-04-05 12:18:15
发布于:浙江
25阅读
0回复
0点赞
#include <iostream>
#include <algorithm>
using namespace std;
int main()
{
int a,b,c;
cin >> a >> b >> c;
cout << max(max(a,b),c);
return 0;
}
这里空空如也
2024-04-05 12:18:15
发布于:浙江
#include <iostream>
#include <algorithm>
using namespace std;
int main()
{
int a,b,c;
cin >> a >> b >> c;
cout << max(max(a,b),c);
return 0;
}
这里空空如也
提交答案之后,这里将显示提交结果~
有帮助,赞一个