- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to write Java program to add two matrices
To add two matrices −
- Create an empty matrix
- At each position in the new matrix, assign the sum of the values in the same position from the given two matrices i.e. if A[i][j] and B[i][j] are the two given matrices then, the value of c[i][j] should be A[i][j] + B[i][j]
Example
public class AddingTwoMatrices{ public static void main(String args[]){ int a[][]={{1,2,3},{4,5,6},{7,8,9}}; int b[][]={{1,1,1},{1,1,1},{1,1,1}}; int c[][]=new int[3][3]; for(int i = 0;i<3;i++){ for(int j = 0;j<3;j++){ c[i][j] = a[i][j]+b[i][j]; System.out.print(c[i][j]+" "); } System.out.println(); } } }
Output
2 3 4 5 6 7 8 9 10
- Related Articles
- Java program to add two matrices.
- C# program to add two matrices
- Golang Program To Add Two Matrices
- Java program to subtract two matrices.
- Java program to multiply two matrices.
- How to Add Two Matrices using Python?
- C++ program to overload addition operator to add two matrices
- Java program to check if two given matrices are identical
- C# program to multiply two matrices
- Python program to multiply two matrices
- How can Tensorflow be used to add two matrices using Python?
- Java program to add two integers
- Java Program to Add Two Numbers
- Program to multiply two matrices in C++
- Java Program to Add the two Numbers

Advertisements