lunes, 17 de octubre de 2011

ORDENAR UN ARREGLO DE MENOR A MAYOR EN C#


using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ordenararreglos
{
    class Program
    {
        static void Main(string[] args)
        {
            //arreglo con números en desorden
            int[] numeros = { 6, 4, 5, 2, 9, 1, 7, 3, 8, 0 };
            //la siguiente instrucción ordena el arreglo numeros de menor a mayor
            //su sintaxis es array.sort(nombredelarreglo);
            Array.Sort(numeros);
            Console.WriteLine("arreglo ordenado de menor a mayor");
            //se imprime en pantalla el arreglo con un ciclo for
            for (int i = 0; i < numeros.Length; i++)
            {
                Console.WriteLine(numeros[i].ToString());  
            }
            Console.ReadLine();//se detiene pantalla
        }
    }
}


No hay comentarios:

Publicar un comentario