using System; namespace ConsoleForDemo { /// <summary> /// C# For Demo. /// https://www.cnblogs.com/LifeDecidesHappiness/p/15665536.html /// LDH @ 2021-12-9 /// </summary> internal class Program { /// <summary> /// The end of the row. /// </summary> public static int RowEnd = 5; /// <summary> /// The end of the column. /// </summary> public static char ColumnEnd = 'e'; private static void Main() { Console.Title = "C# For Demo"; for (var row = 0; row <= RowEnd; row++) for (var column = 'a'; column <= ColumnEnd; column++) Console.WriteLine($"The cell is ({row}, {column})"); Console.ReadKey(); } } }