1
2
3
4
5
6
7
8
public static void main (String[] args) throws java.lang.Exception
{
    int[] num = IntStream.rangeClosed(19).toArray();
 
    for (int i : num)
        for (int j : num)
            System.out.println( i + "*" + j + "=" + i * j);
}
cs

너무 어렵다.
ㅇㅇ