CS_0010_Array2
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication12
{
class Program
{
static void Main(string[] args)
{
int[] numbers = new int[] { 21, 34, 54, 32, 32, 54 };
Console.WriteLine(numbers[2].ToString());
Console.ReadLine();
}
}
}
Comments
Post a Comment