Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
154195 田子熙 比较大小 C++ Accepted 1 MS 268 KB 198 2026-05-26 18:43:17

Tests(1/1):


Code:

#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<<" "<<*b1; }else{ cout<<*b1<<" "<<*a1; } return 0; }