提交时间:2025-07-07 17:35:54

运行 ID: 12173

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