问答详情
源自:4-5 C#中do…while循环

我没注意,改成这样,居然也运行通过。????

using System;

using System.Collections.Generic;

using System.Text;


namespace Test

{

    class Program

    {

        static void Main(string[] args)

        {

            int x = 1;

            do

            {

                x++;

                Console.Write(x+" ");

            }

            while(x>=2&&x<=4);

        }

    }

}


提问者:慕设计1607411 2020-02-03 12:58

个回答

  • 慕娘3272176
    2020-02-03 14:15:46

    没毛病啊, 初始化X是1,循环一次,X就登2,while判断的时候, 符合条件,然后再去循环· 这个没问题,X打印出来应该是3吧