Bem vindos,

Bem Vindos ao blog! Espero que possa ajudar vocês! e que vocês curtam o que eu farei aqui!

segunda-feira, 25 de abril de 2011

usando Length ao invés de algarismos.

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

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            int[] numeros;
            numeros = new int[11] { 10, 12, 18, 11, 22, 82, 64, 132, 144, 216, 112 };
            for (int i = 0; i < numeros.Length; i++)
            {
                Console.WriteLine(numeros[i]);
                Console.ReadLine();


            }
        }
    }
}

execulta a mesma função do anterior, só que com a propriedade "numeros.Length".

Nenhum comentário:

Postar um comentário