摘要: #include <bits/stdc++.h> using namespace std; void swap(int &a,int &b) { int t=a; a=b; b=t; } int main() { int x=5,y=10; cout<<"x="<<x<<" y="<<y<<endl 阅读全文
posted @ 2023-05-08 16:15 记得关月亮 阅读(12) 评论(0) 推荐(0)