max + 函数调用
2024-09-17 10:45:10
发布于:上海
6阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int maxnn(int a,int b,int c,int d){
return max(max(a,b),max(c,d));
}
int main(){
int a,b,c,d;
cin>>a>>b>>c>>d;
cout<<maxnn(a,b,c,d);
return 0;
}
这里空空如也
有帮助,赞一个