直接抄就行
2025-06-05 16:17:41
发布于:浙江
1阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int main()
{
int a,b,c;
cin>>a>>b>>c;
if(a>b && a>c)
{
cout<<a;
}
else if(b>a && b>c)
{
cout<<b;
}
else{
cout<<c;
}
return 0;
}
这里空空如也
有帮助,赞一个