为什么不可以

来源:4-1 C#循环流程图和while循环

鸿哥3579650

2016-07-02 15:03

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--;//请输入

            }

        }

    }

}


写回答 关注

2回答

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

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

    鸿哥3579...

    我知道

    2016-07-02 18:35:00

    共 2 条回复 >

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

    原来是我网炸了。。。。

C#开发轻松入门

本门课程是C#语言的入门教程,将带你轻松入门.NET开发

254118 学习 · 1459 问题

查看课程

相似问题