Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
96944 张德皓 08比较大小 C++ Accepted 1 MS 280 KB 204 2024-11-09 21:54:04

Tests(10/10):


Code:

#include<iostream> #include<cstdio> using namespace std; int main(){ int a,b,d; cin>>a>>b; if(a<b){ d=a; a=b; b=d; } cout<<a; return 0; }