本文主要是介绍求矩阵各行元素之和 (15 分),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
求矩阵各行元素之和 (15 分)
本题要求编写程序,求一个给定的m×n矩阵各行元素之和。
输入格式:
输入第一行给出两个正整数m和n(1≤m,n≤6)。随后m行,每行给出n个整数,其间
以空格分隔。
输出格式:
每行输出对应矩阵行元素之和。
输入样例:
3 2
6 3
1 -8
3 12
输出样例:
9
-7
15
本题是采用一个数组储存矩阵, 另一个数组储存和的方法来解。
/*求矩阵各行元素之和*/
#include <iostream>
#include <cstdio>
#include <cmath>
#include <cstring>
#include <cstdlib>
#include <algorithm>using namespace std;int main (void){int n, m;scanf("%d %d", &m, &n);int a[m][n];int b[m] = {0};for(int i = 0; i < m; i++){for(int j = 0; j < n; j++){scanf("%d", &a[i][j]);b[i] += a[i][j];}}for(int i = 0; i < m; i++){printf("%d\n", b[i]);}return 0;
}
这篇关于求矩阵各行元素之和 (15 分)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!