Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
13200 祝易涛 变量交换输出 C++ Accepted 1 MS 732 KB 129 2021-05-26 11:52:00

Tests(1/1):


Code:

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