/* This is a two dimensional array It asks the user for scores and outputs the score * */ import java.util.*; public class TwoDimensional { public static void main(String[] args) { Scanner key = new Scanner(System.in); final int rows = 3; final int cols = 4; int[][] number = new int[rows][cols]; for(int j=0; j