You are on page 1of 1

namespace ConsoleApplication1

{
class Program
{
static void Main(string[] args)
{
String[] years = new String[20];
int data = 1996;
for (int i = 0; i < years.Length; i++)
{
years[i] = data.ToString();
data++;
foreach (String item in years)
{
Console.WriteLine(item);
}
}
}
}
}

You might also like