| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 154194 | 田子熙 | 比较大小 | C++ | Wrong Answer | 1 MS | 268 KB | 178 | 2026-05-26 18:42:47 |
#include <bits/stdc++.h> using namespace std; int main(){ int a,b; cin>>a>>b; int *a1=&a,*b1=&b; if(*a1>*b1){ cout<<*a1; }else{ cout<<*b1; } return 0; }
------Input------
2563 20323
------Answer-----
20323 2563
------Your output-----
20323