美文网首页
024_while循环。

024_while循环。

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

    namespace _024_while循环 {

        class Program {

            static void Main(string[] args) {

                //while (true)//死循环  一直执行循环体 根本停不下来

                //{

                //    Console.WriteLine("www.taikr.com");

                //}

                int index = 1;

                while (index<=9)

                {

                    Console.WriteLine(index);//1 2  3 4 5 6 7 8 9

                    index++;

                }

                Console.ReadKey();

            }

        }

    }

    相关文章

      网友评论

          本文标题:024_while循环。

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