using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication2
{
class Program
{
static void Main(string[] args)
{
int[] numeros;
numeros = new int[12] { 9, 10, 12, 18, 11, 22, 82, 64, 132, 144, 216, 112 };
for (int i = numeros.Length-1; i >= 0;i--)
{
Console.WriteLine(numeros[i]);
Console.ReadLine();
}
}
}
}
nota: Substitui-se o 0 (zero) em "for (int i = numeros.Length-1; i >= 0;i--)" por "numeros.Length", o "i < numeros.Length" por i>=0 e o "i++" por "i--", e pronto! os números serão exibidos na ordem inversa!
Nenhum comentário:
Postar um comentário