摘要: #include <iostream> using namespace std; void swapInt(int& a, int& b) { int temp = a; a = b; b = temp; } void swapDouble(double& a, double& b) { doubl 阅读全文
posted @ 2020-02-28 17:58 _Huang95 阅读(260) 评论(0) 推荐(0) 编辑