Run ID:154769
提交时间:2026-05-30 23:16:02
#include <iostream> #include <algorithm> // 调用max函数需要此头文件 using namespace std; int main() { int a, b, c; cin >> a >> b >> c; int res = max(a, max(b, c)); cout << res << endl; return 0; }