Fill Two Dimensional Array Rows By Rows Java

[Solved] Fill Two Dimensional Array Rows By Rows Java | Vb - Code Explorer | yomemimo.com
Question : fill two dimensional array row by row java

Answered by : kos-pter

//this way u can fill your array row by row
Scanner input = new Scanner(System.in);
for (int i = 0; i < row; i++){	for (int j = 0; j < column; j++){ array[i][j] = input.nextInt();	}
}
//this way u can fill your array column by column
//Scanner input = new Scanner(System.in);
for (int i = 0; i < column; i++){	for (int j = 0; j < row; j++){ array[i][j] = input.nextInt();	}
}

Source : | Last Update : Sat, 28 May 22

Answers related to fill two dimensional array rows by rows java

Code Explorer Popular Question For Vb