please check my code
it is only working for 1 table
the loop is not repeating
package com.codegym.task.task04.task0434;
/*
Multiplication table
*/
import java.io.*;
public class Solution {
public static void main(String[] args) throws Exception {
int j = 1,i = 1;
while(j<11)
{
// int i = 1;
while(i<11)
{
//int p = i * j;
System.out.print((i*j) + " ");
i++;
// break;
}
System.out.println("\n");
j++;
}
// break;
//write your code here
}
}