c语言编程的小问题。。谢谢各位#include<stdio.h>main(){ int x=2; while(x--); printf("%d\n",x); }结果是-1。怎么来的[解决办法]while()后面是;号,所以是一个语句,printf不再while()里面,所以会是-1[解决办法]