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