filmov
tv
Java Practice It || 2.33 starExclamation2 || nested for loop

Показать описание
Question:
What is the output of the following sequence of loops?
for (int i = 1; i = 2; i++) {
for (int j = 1; j = 3; j++) {
for (int k = 1; k = 4; k++) {
}
}
}
Problem:
What is the output of the following sequence of loops?
for (int i = 1; i = 2; i++) {
for (int j = 1; j = 3; j++) {
for (int k = 1; k = 4; k++) {
}
}
}
Problem: