static void Main(string[] args) { //6. Створити розширяючий метод для масиву цілих чисел, який спочатку виводить елементи з парними індексами а потім з непарними. OZClass ozExemp = new OZClass(); ozExemp.EnterData(); Console.Write("User array of one zero list "); Console.Write(" "); ozExemp.OutputList(); Console.WriteLine(); Console.Write("Elements with an even index "); Console.Write(" "); ozExemp.EvenOdd(); Console.ReadKey(); }
public static void EvenOdd(this OZClass exemplar) { for (int i = 0; i < exemplar.Count; i++) { if (i % 2 == 0) { exemplar.OutputNumberEven(i); } } Console.WriteLine(); Console.Write("Elements with an odd index: "); for (int i = 0; i < exemplar.Count; i++) { if (i % 2 != 0) { exemplar.OutputNumberOdd(i); } } }