Write the code that will produce the multiplication table between 1 and 100 as shown in the picture below. I have given you part of the code. Look in the code immediately below this picture. Your job is to figure out what should replace the red question marks(?).
The code below is incomplete. Figure out what values for the loops will produce the multiplication table.
for( int factor1 = ?; factor1 <= ?; factor1++ ){
for (int factor2 = ?; factor2 <=? ; factor2 ++){
System.out.print(? * ? + " ");
}
System.out.println();
}