问答详情
源自:4-1 C#循环流程图和while循环

为什么不可以

using System;

using System.Collections.Generic;

using System.Text;


namespace Test

{

    class Program

    {

        static void Main(string[] args)

        {

            int y = 5;

            while (y<=5&&y>=1)//请输入

            {

                Console.Write(y+" ");

                y--;//请输入

            }

        }

    }

}


提问者:鸿哥3579650 2016-07-02 15:03

个回答

  • 慕侠0976544
    2016-07-02 16:00:23
    已采纳

    循环结束后加 Console.Read();

  • 鸿哥3579650
    2016-07-02 16:21:25

    原来是我网炸了。。。。