What will be the result of this nested "for" loop in Java?
for (int i = 0; i < 2; i++) {
for (int j = 0; j < 3; j++) {
System.out.println(i + " " + j);
}
}
What will be the result of this nested "for" loop in Java?
for (int i = 0; i < 2; i++) {
for (int j = 0; j < 3; j++) {
System.out.println(i + " " + j);
}
}