Class max {public static void main (string args []) {int m [] [] = {{2, 8, -6, 4}, {25, 64, 8, 9}, {5, 4, 6, -4}}; int max = m [0] [0]; for (int i = 0; i max) max = m [i] [j];}} system.out.Print ("This is" max); system.out.println ("This number" i "Row" J "Column");}} Error -------------------- Configuration: SDK --------- ----------- C: /max.java: 11: Cannot Resolve Symbolsymbol: Variable i location: class maxsystem.out.println ("This number is" i "Row" J "column" ); ^ C: /max.java: 11: Cannot Resolve Symbolsymbol: variable j location: class maxsystem.out.println ("This number is" i "row" J "column"); ^ 2 ErrorS
Process completed.