21
1
using System;
2
3
public class Program
4
{
5
public static void Main()
6
{
7
int[][] jArray = new int[2][]{
8
new int[3]{1, 2, 3},
9
10
new int[4]{4, 5, 6, 7}
11
};
12
13
Console.WriteLine(jArray[0][0]);
14
Console.WriteLine(jArray[0][1]);
15
Console.WriteLine(jArray[0][2]);
16
Console.WriteLine(jArray[1][0]);
17
Console.WriteLine(jArray[1][1]);
18
Console.WriteLine(jArray[1][2]);
19
Console.WriteLine(jArray[1][3]);
20
}
21
}
Cached Result