Declare two dimensional array called Array1 that consists of three rows and four columns as following
- برمجة جافا
- 2022-04-19
- softwareEngineer
الأجوبة
import java.util.Scanner;
public class HelloWorld
{
public static void main(String[] args) {
int[][] Array1 = {{2, 5, 1, 6}, {3, 3, 3, 6}, {1, 5, 11, 98}};
System.out.println(Array1[1][2]);
for(int row=0 ;row<Array1.length;row++)
{
for(int column=0;column<Array1[row].length;column++)
{
System.out.print(Array1[row][column]+" ");
}
System.out.println("");
}
}
}
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال