I need to design and implement an application that produces a multiplication table, showing the results of
import java.util.*;
import java.text.*;
public class MultTab7
{
//----------------------------------------------------------------------------------------------
// Creates a multiplication table.
//----------------------------------------------------------------------------------------------
public static void main (String[] args)
{
int MAX = 12;
for (int r=1; r<=MAX; r++)
{
for (int c=1; c<= MAX; c++)
{
cout<<r*c;
}
cout <<'\n'
}
}
}
multiplying the integers 1 through 12 by themselves.