Я абсолютно застрял. Любая помощь будет оценена. Вопрос задает
1.Создать две 2-мерных матрицы / матрицы (случайные числа, диапазон 1-500, где 1 и 500 должны быть объявлены как константы класса). Оба имеют одинаковые размеры.
2.Печать массивов.
3. Вызовите метод суммирования 2 матриц. Сумма 2 матриц matrix_1 и matrix_2 является результатом матрицы, где для каждой строки r и столбца c
result_rc = matrix_1_rc + matrix_2_rc
4.Печать полученной матрицы.
Я застрял на 3 и 4. Часть проблемы в том, что я не понимаю логику того, что 3 просит. Должен ли я получить сумму каждой строки и каждого столбца и добавить это ко вторым массивам сумму строк и столбцов. Вторая проблема - я абсолютно потерян, что делать дальше.
Я часами искал и пробовал разные вещи.
import java.util.*;
public class Lab12p2 {
public static final int MAX = 500;
public static final int MIN = 1;
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
System.out.println("Enter the number of times to run the program");
int start = scan.nextInt();
while (start < 0) {
System.out.println("Error! Should be positive. REENTER");
start = scan.nextInt();
}
// end number of times validation
while (start > 0)// counter loop for how many times to run program {
System.out.println("Enter the size of the 2 arrays");
int SIZE = scan.nextInt();
while (SIZE < 0) {
System.out.println("Error! Should be positive. REENTER");
SIZE = scan.nextInt();
} // size validation
// start of methods
int[][] a = new int[SIZE][SIZE];
int[][] b = new int[SIZE][SIZE];// second array
System.out.println("The first array is ");
System.out.println();
randArray(a, SIZE, SIZE, MIN, MAX);
System.out.println("The second array is ");
System.out.println();
randArray(b, SIZE, SIZE, MIN, MAX);
sum2arrays(a, b, SIZE, SIZE);
start--;
}
public static void randArray(int[][] matrix, int row, int col, int low, int up) {
Random rand = new Random();
for (int r = 0; r < row; r++) {
for (int c = 0; c < col; c++) {
int random = matrix[r][c] = rand.nextInt(up - low + 1) + low;
System.out.print("\t" + random);
}
System.out.println();
}
}
public static void sum2arrays(int[][] matrix1, int[][] matrix2, int col, int row) {
int sumrow;
int sumtotalrow = 0;
for (int r = 0; r < matrix1.length; r++) {
sumrow = 0;
for (int c = 0; c < matrix1[r].length; c++) {
sumrow = sumrow + matrix1[r][c];
}
sumtotalrow = sumtotalrow + sumrow;
}
// testing
System.out.println("The sum of ALL the elements/row = " + sumtotalrow);
}
}
Это должно
Вызовите метод для суммирования 2 матриц. Сумма из 2 матриц matrix_1
и matrix_2
представляет собой матричный результат, где для каждых row r
и column c
,
result_rc= matrix_1_rc+ matrix_2_rc
(я не знаю, что это значит), а затем распечатать полученную матрицу