It seems to be stuck in an endless loop, I don't know where is causing this problem.
1 2 3 4 5 6 7 8 9 10
1 2 3 4 5 6 7 8 9 10
1 2 3 4 5 6 7 8 9 10
1 2 3 4 5 6 7 8 9 10
1 2 3 4 5 6 7 8 9 10
1 2 3 4 5 6 7 8 9 10
1 2 3 4 5 6 7 8 9 10
1 2 3 4 5 6 7 8 9 10
1 2 3 4 5 6 7 8 9 10
.......
package en.codegym.task.pro.task05.task0509;
/*
Multiplication table
*/
public class Solution {
public static int[][] MULTIPLICATION_TABLE;
public static void main(String[] args) {
//write your code here
MULTIPLICATION_TABLE=new int[10][10];
for(int i=0;i<10;i=i++){
for(int j=0;j<10;j++){
MULTIPLICATION_TABLE[i][j]=((i+1)*(j+1));
System.out.print(MULTIPLICATION_TABLE[i][j]+" ");
}
System.out.println();
}
}
}