在这段代码中
static void Main(string[] args)
{
int x = 2;
do
x++;
Console.Write(x+" ");
}
while(x>2&&x<=4);
按道理,它先执行x++,即x=3,应该打印3才对,为什么会打印2呢?
怎么会错误,打印3对啊