平淡水杯

文章
2
资源
0
加入时间
3年12月2天

数据结构,算法与应用 c++语言描述答案

题1#include <iostream>void swap(int& x, int& y);using namespace std;int main(){ int i ,j; std::cin >> i >> j; swap(i,j); cout<<i<<j<<e...