Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
93377 Kevin 【基础题】交换两数 C++ Accepted 1 MS 280 KB 129 2024-10-13 17:33:34

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; return 0; }