martes, 11 de noviembre de 2014

TAREA ARREGLOS EN CLASES

class ArraysLaboratorio
    {
        static void Main(string[] args)
        {
            int[] arreglo1 = new int[5]{1,2,3,4,5};
           
            Console.WriteLine("\tLos números por bucle son: ");
                for (int i = 0; i < arreglo1.Length; i++)
                {
                    Console.WriteLine("\t" + arreglo1[i]);
                   
                }
                Console.ReadKey();

        }
    }

No hay comentarios:

Publicar un comentario