提交时间:2025-12-26 14:18:30

运行 ID: 77494

#include <iostream> #include <algorithm> using namespace std; int main() { int a,b,c,maxn; cin >>a>>b>>c; maxn=max(a,b); maxn=max(maxn,c); cout << maxn; return 0; }