Leave a Reply 5

Your email address will not be published. Required fields are marked *


cho

cho

The correct answer is 2313.

v10

v10

yes I got the same thing 2313

Sucuk

Sucuk

Correcto hombrey, its indeedo 2313’o

renko

renko

Answer: 2313
package q040;

public class ForLoop {

public static void main(String[] args) {
int[][] n = {{1, 3}, {2,3}};
for (int row = n.length-1; row >= 0; row–) {
for (int column : n[row]) {
System.out.print(column);
}
}
}

}