Input
Output
public class Twodarray { public static void main(String []args) { int[][] score = {{100, 221}, {59, 54},{10, 21}}; for(int i=0; i<3; i++){ for(int j=0; j<2; j++){ System.out.println( " Element[" + i + "][" + j + "]= " + score[i][j]); } } } }