用C语言编写函数fun,函数的功能是求出二维数组周边元素绝对值之和,作为函数值返回。二维数组中的值在主函数中赋予。
时间: 2024-05-02 10:19:37 浏览: 89
C语言程序设计-求出二维数组周边元素之和,作为函数值返回;二维数组的值在主函数中赋予;.c
5星 · 资源好评率100%
好的,这个问题是一个技术问题,我可以回答。以下是函数fun的代码:
```
int fun(int arr[][n], int rows, int cols) {
int sum = 0;
for (int i = 0; i < rows; i++) {
for (int j = 0; j < cols; j++) {
if (i == 0 || j == 0 || i == rows-1 || j == cols-1) {
sum += abs(arr[i][j]);
}
}
}
return sum;
}
```
其中,n为数组每行的元素个数,在主函数中赋值;rows表示数组的行数,cols表示数组的列数。
阅读全文