Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
1505 林子翔 【基础题】交换两数 C++ Accepted 1 MS 728 KB 183 2020-11-14 14:43:07

Tests(9/9):


Code:

#include <iostream> using namespace std; int main() { int A, B, t; cin >> A >> B; t = A; A = B; B = t; cout << A << " " << B << endl; return 0; }