镇乃天子

This commit is contained in:
2026-03-07 05:16:06 -05:00
parent 7aecf0da37
commit 9fdfe16b58
5 changed files with 85 additions and 0 deletions

13
666/交换2.cpp Normal file
View File

@@ -0,0 +1,13 @@
#include<iostream>
using namespace std;
int main(){
int a,b,c;
cin>>a>>b;
cout<<a<<" "<<b<<" ";
c=a;
a=b;
b=c;
cout<<a<<" "<<b<<endl;
return 0;
}