public static void Main()
int[] tomb = new int [3];
for (int i =0; i<tomb.Length; i++)
Console.Write(tomb[i] + ",");
string[] tombke = new string[5] {"k", "u", "k", "a", "c"};
for (int j =0; j< tombke.Length; j++)
Console.Write(tombke[j]);
int[,] matrix= new int[8,8];
Console.WriteLine("Magassága: " + matrix.GetLength(0));
Console.WriteLine("Szélessége: " +matrix.GetLength(1));
for (int k=0; k<matrix.GetLength(0); k++) {
for (int z=0; z<matrix.GetLength(1); z++)
matrix[k, z] = r.Next(0, 100);
Console.Write(matrix[k,z] + ",");}