using System;
namespace _12._Sort_elem._of_array_DESC
{
class Program
static void Main(string[] args)
int[] myArray = { 5, 4, 7, 12, 77, 1 };
Array.Sort(myArray);
Array.Reverse(myArray);
Console.WriteLine("Descending: ");
foreach (var a in myArray)
Console.WriteLine(a.ToString());
}
// Write a program to sort elements of the array in descending order.