请编写函数int. fun (int a[2] [4),它的功能是找出整型二维数组中的最大 元素的值,并将此值返回主函数。主函数中定义二维数组xx[2][4]={5,8, 3, 45, 76, -4, 12, 82},调用fun函数并输出其最大值。
时间: 2024-02-16 20:03:13 浏览: 105
二维数组求最大数
3星 · 编辑精心推荐
下面是函数fun的代码实现:
```c++
int fun(int a[2][4]) {
int max = a[0][0];
for (int i = 0; i < 2; i++) {
for (int j = 0; j < 4; j++) {
if (a[i][j] > max) {
max = a[i][j];
}
}
}
return max;
}
```
主函数中调用fun函数,找出xx二维数组中的最大元素,并输出:
```c++
int xx[2][4] = { {5, 8, 3, 45}, {76, -4, 12, 82} };
int max = fun(xx);
cout << "最大值为:" << max << endl;
```
输出结果为:
```
最大值为:82
```
阅读全文