| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 313987 | 徐梓豪 | 【C1-7】两数比大小 | C++ | Compile Error | 0 | 0 MS | 0 KB | 147 | 2025-03-23 17:00:46 |
#include<iostream> using namespace std; int main(){ int a,b; cin>>a>>b; if (a>b) cout<<a; else (a<b) cout<<(b); return 0; }