提交时间:2025-07-10 10:06:39

运行 ID: 330426

#include<iostream> using namespace std; int main() { int a=1; int b=2; int c=a; a=b; b=c; return 0; }