美文网首页
026_for循环。

026_for循环。

作者: 立秋i | 来源:发表于2018-03-30 23:34 被阅读0次

    namespace _026_for循环 {

        class Program {

            static void Main(string[] args)

            {

                //for (;;)//初始化条件 ,和循环的判断条件都不写的话  就是一个死循环

                //{

                //}

                //int index = 1;

                //for (;index<=9;)

                //{

                //    Console.WriteLine(index);

                //    index++;

                //}

                for (int index = 1;index<=9;index++)

                {

                    Console.WriteLine(index);

                }

                Console.ReadKey();

            }

        }

    }

    相关文章

      网友评论

          本文标题:026_for循环。

          本文链接:https://www.haomeiwen.com/subject/wvbmcftx.html