Construct a 2 dimensional array that for each entry in the array, display the index of the first dimension data entered, the second dimension's value of the data entered, and the first dimension's value on a single line separated by : (colon).
here is what i got but i dont know what im missing thanks in advance.
public class twoDimension{
public static void main(String[] args) {
int[][] a2 = new int[][];
for (int i=0; i
Here is an example of generating two-dimensional array.
import java.util.*; public class twoDimension{ public static void main(String[] args) { Scanner input=new Scanner(System.in); System.out.print("Enter value of i: "); int a=input.nextInt(); System.out.print("Enter value of j: "); int b=input.nextInt(); int[][] a2 = new int[a][b]; System.out.println("Enter elements of your choice: "); for(int i=0 ; i < a2.length ; i++){ for(int j=0 ; j < a2[i].length ; j++){ a2[i][j] = input.nextInt(); } } for(int i=0 ; i < a2.length ; i++){ System.out.println(); for(int j=0 ; j < a2[i].length ; j++){ System.out.print(a2[i][j]+" "); } } } }
Ads