提交时间:2024-04-22 09:38:11

运行 ID: 46012

#include<bits/stdc++.h> using namespace std; int main() { int a,b,c; cin>>a>>b>>c; if(a>b>c) { cout<<a; return 0; } else if(b>a>c) { cout<<b; return 0; } else { cout<<c; return 0; } return 0; }