感谢您阅读我的博客,如果您现在工作、学习累了或者疲惫了,不妨聆听一下音乐,它能够减轻你的疲劳,还能够带给您一种舒适愉悦的心情。如果您认为这篇文章还不错或者有所收获,您可以在页面 右侧和底部 扫描二维码 打赏我,您的鼓励是我继续写作、分享的最大动力!

C# For Demo

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();
        }
    }
}

 

posted @ 2021-12-09 09:19  Love In Winter  阅读(49)  评论(0编辑  收藏  举报
作者: LifeDecidesHappiness
出处: http://www.cnblogs.com/LifeDecidesHappiness/
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,否则保留追究法律责任的权利,且在文章页面明显位置给出原文连接,如有问题,可以通过以下邮箱地址 2468881301@qq.com  联系我,非常感谢。
踏实做一个为人民服务的搬运工!
如果您认为这篇文章还不错或者有所收获,您可以通过右边的“打赏”功能,您的支持和鼓励是我继续写作、分享的最大动力!

点击关注不迷路,让我带你上高速!