Help with Code Tags java Syntax (Toggle Plain Text) int r1, c1, r2, c2; int[][]cards; cards=new int[4][4]; for(int r=0; r<4; r++) { for(int c=0; c<4; c++) { cards[r][c]=(int) (Math.random() * 8); // the line below should be commented System.out.print(cards[r][c]); } System.out.print("\n"); } int r1, c1, r2, c2; int[][]cards; cards=new int[4][4]; for(int r=0; r<4; r++) { for(int c=0; c<4; c++) { cards[r][c]=(int) (Math.random() * 8); // the line below should be commented System.out.print(cards[r][c]); } System.out.print("\n"); }
int r1, c1, r2, c2; int[][]cards; cards=new int[4][4]; for(int r=0; r<4; r++) { for(int c=0; c<4; c++) { cards[r][c]=(int) (Math.random() * 8); // the line below should be commented System.out.print(cards[r][c]); } System.out.print("\n"); }