lunes, 17 de junio de 2013

Dado N Números mostrar el mayor y el menor C#




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

namespace NumeroMayorMenor
{
    class Program
    {
        static void Main(string[] args)
        {

            int n;
            int mayor;
            int menor;
            Console.WriteLine("Cantidad de números: ");
            n = Convert.ToInt32(Console.ReadLine());
            int[]numeros=new int[n];

            for (int i = 0; i < n; i++)
            {
                Console.WriteLine(" Inserta numero:");
                numeros[i] = Convert.ToInt32(Console.ReadLine());
            }

            mayor = numeros[0];
            menor = numeros[0];

            for (int i = 0; i < n; i++)
            {
                if (numeros[i] > mayor)
                {
                    mayor = numeros[i];
                }

                if (numeros[i] < menor)
                {
                    menor = numeros[i];
                }
            }


            Console.WriteLine("El mayor: "+mayor);
            Console.WriteLine("El menor: " + menor);
            Console.ReadLine();
        }
    }
}



No hay comentarios.:

Publicar un comentario

Es muy importante tu comentarios: