You are on page 1of 1

using using using using

System; System.Collections.Generic; System.Linq; System.Text;

namespace ConsoleApplication1 { class Program { static void Main(string[] args) { int a = 65; for (int i = 1; i <= 4; i++) { for (int j = 1; j <= i; j++, a++) { Console.Write(Convert.ToChar (a) + " "); } Console.WriteLine(); } } } }

You might also like