why: #include<stdio.h> 猜猜能不能编译通过,结果是多少 [阅读: 295] 2009-12-12 10:30:57 #include<stdio.h> void main() {int x=0; while(x<3) for(;x<4;x++); {printf("%d",x++); if(x<3) continue; else break; printf("%d",x); } }