Question: In the following exercise you will implement Matrix Addition Do not change main Just fill in this method below main addMatricies() Don't change any other
In the following exercise you will implement Matrix Addition
Do not change main
Just fill in this method below main
addMatricies()
Don't change any other code or write any other methods
The output of your program should look like this:
MATRIX1 1 2 3 2 4 6 MATRIX2 4 6 8 6 9 12 MATRIX1 + MATRIX2 5 8 11 8 13 18
/* Exercise2.java */ import java.io.*; import java.util.*; public class Exercise2 { public static void main( String[] args ) { try // We wil learn about Exceptions soon { int[][]m1 = new int[2][3]; int[][]m2 = new int[2][3]; int[][]m3 = new int[2][3]; // put some numbers in m1 for (int r=0; r |
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
