コード例 #1
0
 static void Main(string[] args)
 {
     ConsoleHelper.WriteText($"Greetings!\nThis programm generates the random two-dimensional array and finds summ of even values.\n");
     int[,] array = ArrayGenerator.GenerateTwoDimensional();
     ArrayProcessor.CalculateSummOfEven(array);
     ConsoleHelper.PressAnyKey();
 }