Matrix Addition Java
PROGRAM TO ADD TWO MATRICES
- public class MatrixAdditionExample{
- public static void main(String args[]){
- //creating two matrices
- int a[][]={{1,3,4},{2,4,3},{3,4,5}};
- int b[][]={{1,3,4},{2,4,3},{1,2,4}};
- //creating another matrix to store the sum of two matrices
- int c[][]=new int[3][3]; //3 rows and 3 columns
- //adding and printing addition of 2 matrices
- for(int i=0;i<3;i++){
- for(int j=0;j<3;j++){
- c[i][j]=a[i][j]+b[i][j]; //use - for subtraction
- System.out.print(c[i][j]+" ");
- }
- System.out.println();//new line
- }
- }}
OUTPUT
2 6 8 4 8 6 4 6 9
Comments
Post a Comment