Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
12224 徐一喆 【基础题】交换两数 C++ Accepted 2 MS 728 KB 146 2021-05-20 12:28:23

Tests(9/9):


Code:

#include<bits/stdc++.h> using namespace std; int main() { int a,b; cin>>a>>b; swap(a,b); cout<<a<<" "<<b<<endl; return 0; }