using System; class Program { public static void Main() { //Tömben tömb vagy egyenletlen tömb (minden sor más elemszámot tartalmazhat int[][] tomb = new int[2][]; tomb[0] = new int[3]; tomb[1] = new int[3]; tomb[0][0] = 3; tomb[0][1] = 5; tomb[0][2] = 8; tomb[1][0] = 15; tomb[1][1] = 123; tomb[1][2] = 2; Console.WriteLine(tomb[0][1]); } }