Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
145562 伊建润 求三个数的最大值 C++ Accepted 0 MS 264 KB 284 2026-01-25 16:30:32

Tests(1/1):


Code:

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