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