Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
107567 | 蔡书涵 | 输出较大的数 | C++ | Accepted | 0 MS | 268 KB | 242 | 2025-01-18 10:16:49 |
#include<iostream> #include<cstdio> using namespace std; int main() { int a,b; cin>>a; cin>>b; if(a>b){ cout<<"max="<<a<<endl; } else if(a<b){ cout<<"max="<<b<<endl; } return 0; }