Вроде output таблица ужножения, а проверку не проходит
или нужно так
Массив[0][0] = 1;
Массив[0][1] = 2;
package com.javarush.task.pro.task05.task0509;
/*
Таблица умножения
*/
public class Solution {
public static int[][] MULTIPLICATION_TABLE = new int[10][10];
public static void main(String[] args) {
for (int i = 1; i < MULTIPLICATION_TABLE.length; i++) {
int nums = 0;
for (int j = 1; j < MULTIPLICATION_TABLE.length; j++) {
nums = i * j;
MULTIPLICATION_TABLE[i][j] = nums;
System.out.print(MULTIPLICATION_TABLE[i][j] + " ");
}
System.out.println();
}
}
}