using System;
public class Program
{
public static void Main()
int [] n = new int [10];
int j,i;
for (i=0; i<10; i++)
n [i] = i +100;
}
for (j=0; j<10; j++)
Console.WriteLine("element [{0}]={1}", j,n[j]);