
给定一个矩阵,我们需要打印矩阵的边界元素并显示它们的总和。
示例
参考下面给出的矩阵 -
给定矩阵
1 2 3 4 5 6 7 8 9
边界矩阵
1 2 3 4 6 7 8 9
边界元素之和:1 + 2 + 3 + 4 + 6 + 7 + 8 + 9 = 40
求边界矩阵之和的逻辑如下如下 -
for(i = 0; i"); }
程序
以下是用于打印矩阵边界元素之和的C程序 -
#include#include int main(){ int m, n, sum = 0; printf(" Enter the order of the matrix : "); scanf("%d %d",&m,&n); int i, j; int mat[m][n]; printf("
Input the matrix elements
"); for(i = 0; i
Boundary Matrix
"); for(i = 0; i
"); } printf("
Sum of boundary is %d", sum); }
输出
当执行上述程序时,会产生以下结果 -
Enter the order of the matrix : 3 3 Input the matrix elements : 1 2 3 4 5 6 7 8 9 Boundary Matrix : 1 2 3 4 6 7 8 9 Sum of boundary is 40











