Run ID:147268
提交时间:2026-02-03 17:21:10
#include<bits/stdc++.h> using namespace std; bool a,b,c; int man,m,x; int main(){ cin>>man>>m>>x; a=man>m&&man>x; b=m>man&&m>x; c=x>man&&x>m; if(a==1)cout<<man; else{ if(b==1)cout<<m; else cout<<x; } return 0; }