using System;
public class Program
{
//Write a program that stores even numbers from 200 to 300 in an array
public static void Main()
int[] numberarray = new int[150];
for (int i = 100; i <= 149; i++)
numberarray[i] = 2 * i + 2;
Console.WriteLine(numberarray[i]);
}