using System;
public class Program
{
public static void Main()
int i = 0; //While LOOP
while(i < 5)
Console.WriteLine(i);
i++;
}
Console.WriteLine("***********************");
for(int a = 0; a < 11; a++)//For LOOP
Console.WriteLine(a);
string[] states = {"Texas","Cali","Nevada","MaryLand"};
foreach(string b in states);
Console.WriteLine(b);