Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
83053 sh25_huangse 交换变量 C++ 通过 0 MS 244 KB 229 2026-01-20 19:40:11

Tests(1/1):


#include <iostream> using namespace std; void jiaohuan(int &a,int &b){ int temp; temp=a; a=b; b=temp; cout<<a<<" "<<b; } int main(){ int c,d; cin>>c>>d; jiaohuan(c,d); return 0; }


测评信息: