Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
83052 sh25_huangse 交换变量 C++ 解答错误 0 MS 244 KB 207 2026-01-20 19:38:57

Tests(0/1):


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


测评信息: