摘要: //二位数组参数传递 //1. void display1(int arr[][4], const int rows) { for (int i = 0; i < rows; i++) { for (int j = 0; j < 4; j++) { cout << arr[i][j] << ' '; } cout << endl; } cout << endl; ... 阅读全文
posted @ 2019-02-03 10:59 xslwm 阅读(186) 评论(0) 推荐(0) 编辑