Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
1881 张昊然 变量交换输出 C++ Accepted 1 MS 732 KB 161 2020-11-17 20:19:06

Tests(1/1):


Code:

#include <iostream> using namespace std; int main(){ int a,b,c; cin >> a >> b >> c; cout << c << " " << a << " " << b << endl; return 0; }