public static void Main()
primes = String.Format("Prime numbers less than 10: {0}, {1}, {2}, {3}, {4}\n", 1, 2, 3, 5, 7 );
Console.WriteLine(primes);
string[] names = { "Adam", "Bridgette", "Carla", "Daniel",
"Ebenezer", "Francine", "George" };
decimal[] hours = { 40, 6.667m, 40.39m, 82, 40.333m, 80,
Console.WriteLine("{0,-20} {1,5:1}\n", "Name", "Hours");
for (int ctr = 0; ctr < names.Length; ctr++)
Console.WriteLine("{0,-20} {1,5:N1}", names[ctr], hours[ctr]);
Console.WriteLine("{0:C}", MyInt);