摘要: #include <iostream>using namespace std;void f(int a[][3], int row){ for(int i = 0; i < row; i++) { for(int j = 0; j < 3; j++) { cout << a[i][j] << " " 阅读全文
posted @ 2018-09-01 15:12 newbird2017 阅读(87) 评论(0) 推荐(0) 编辑
摘要: 举个例子, void f(const int &x) 和 void f(int &x) 是不同的函数。 函数的返回值不能作为区分 阅读全文
posted @ 2018-09-01 13:19 newbird2017 阅读(200) 评论(0) 推荐(0) 编辑