public static void Main(string args)
int[] vetor = new int[0];
for (int i = 0; i < vetor.Length; i++)
Console.Write("Introduza o {0}º numero: ", i+1);
vetor[i] = int.Parse(Console.ReadLine());
for (int i = 0; i < vetor.Length; i++)
for (int j = i + 1; j < vetor.Length; j++)
Console.WriteLine("Vetor ordenado em ordem decrescente: ");
Console.WriteLine("os numeros são: ");
for (int i = 0; i < vetor.Length; i++)
Console.Write("{0}\t ", vetor[i]);