镇乃天子

我是无惨
This commit is contained in:
2026-04-18 05:50:37 -04:00
parent f9a50b3be6
commit 91da12510e
4 changed files with 74 additions and 0 deletions

22
666/dog.cpp Normal file
View File

@@ -0,0 +1,22 @@
#include<iostream>
using namespace std;
void myswap(int &i,int &j){
int x;
x=i;
i=j;
j=x;
}
int main(){
int a,b,c;
cin>>a>>b;
myswap(a,b);
cout<<a<<" "<<b<<endl;
return 0;
}