Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
122750 黄子轩 变量值的交换 C++ 通过 100 0 MS 244 KB 250 2024-01-22 16:39:31

Tests(4/4):


#include<iostream>//使用cin,cout,必须调用库iostream,否则编译出错 using namespace std; int main() { int a,b,c,d,e,f; cin>>a>>b; c=a; a=b; b=c; cout<<a; cout<<" "; cout<<b; return 0; }


测评信息: