
Display tow dimensional array by matrix form using one for loop in java

Java Display tow dimensional array by matrix form using one for loop
import java.util.*;
class Display2dArrayUsingOneLoop{
public static void main(String args[]) {
int j=0,k=0,a[][]={ {1,2,4}, {5,6,7}};
while(true) {
System.out.print(a[j][k] + " ");
if (a[j].length == k + 1) {
k = 0;
j++;
System.out.println();
} else {
k++;
}
if(a.length == j) {
break;
}
}
}
}
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.