class Program { static void Main() { int n; Console.Write("Введите размер массива: "); n = Convert.ToInt32(Console.ReadLine());
int[] array = new int[n]; Console.WriteLine("Введите элементы массива:"); for(int i = 0; i < n; i++) { array[i] = Convert.ToInt32(Console.ReadLine()); } Array.Sort(array); Array.Reverse(array); Console.WriteLine("Четные числа в порядке убывания:"); foreach(int num in array) { if(num % 2 == 0) { Console.WriteLine(num); } } }
using System;
class Program
int[] array = new int[n];{
static void Main()
{
int n;
Console.Write("Введите размер массива: ");
n = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Введите элементы массива:");
for(int i = 0; i < n; i++)
{
array[i] = Convert.ToInt32(Console.ReadLine());
}
Array.Sort(array);
Array.Reverse(array);
Console.WriteLine("Четные числа в порядке убывания:");
foreach(int num in array)
{
if(num % 2 == 0)
{
Console.WriteLine(num);
}
}
}
}