- 龙凤苑中学A班4.28
交换变量
- @ 2024-4-28 17:38:21
#include <bits/stdc++.h>
#include<iostream>
using namespace std;
int main (){
int a,b,c;
cin>>a>>b;
c=a;
a=b;
b=c;
cout<<a<<' '<<b;
return 0;}
0 comments
No comments so far...