摘要: 这是第二天学习的代码。 1 #include <iostream> 2 3 using namespace std; 4 5 // 引用 6 int add(int& a, int& b) 7 { 8 return a+b; 9 } 10 void swap(int& a, int& b) 11 { 阅读全文
posted @ 2022-05-05 21:59 Z_He 阅读(107) 评论(0) 推荐(0) 编辑