haitao: 代码格式化了,就清楚了。。。。。。。。。 [阅读: 381] 2009-12-12 15:20:17 #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); } }