Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,938 questions

51,875 answers

573 users

How to add two matrices (matrix) in C++

1 Answer

0 votes
#include <iostream>

using namespace std;

int main()
{
	int matrix1[][4] = { { 1, 1, 1, 1 },{ 2, 2, 2, 2 },{ 3, 3, 3, 3 } };
	int matrix2[][4] = { { 4, 4, 4, 4 },{ 5, 5, 5, 5 },{ 6, 6, 6, 6 } };
	int sum[][4] = { { 0, 0, 0, 0 },{ 0, 0, 0, 0 },{ 0, 0, 0, 0 } };

	int rows = sizeof(matrix1) / sizeof(matrix1[0]);
	int cols = sizeof(matrix1[0]) / sizeof(matrix1[0][0]);

	for (int i = 0; i < rows; i++)
		for (int j = 0; j < cols; j++)
			sum[i][j] = matrix1[i][j] + matrix2[i][j];

	for (int i = 0; i < rows; i++)
	{
		for (int j = 0; j < cols; j++)
			cout << sum[i][j];
		cout << endl;
	}
		
	return 0;
}


/*
run:

5555
7777
9999

*/

 



answered May 24, 2017 by avibootz

Related questions

1 answer 145 views
145 views asked May 23, 2017 by avibootz
1 answer 153 views
153 views asked May 24, 2017 by avibootz
1 answer 139 views
139 views asked May 24, 2017 by avibootz
1 answer 249 views
249 views asked May 24, 2017 by avibootz
1 answer 92 views
2 answers 155 views
1 answer 108 views
108 views asked Aug 4, 2021 by avibootz
...