#include<math.h>
#include<iostream>
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;
}
1.4-15:最大数输出
最新推荐文章于 2025-12-06 09:52:47 发布
185

被折叠的 条评论
为什么被折叠?



