摘要: 填空题 1. 给出下述程序的执行结果 #include <stdio.h> main() { int i=0; while(i<3) for(; i<4;i++) { printf("%d",i++); if(i<3) continue; else break; printf("%d\n",i); 阅读全文
posted @ 2018-03-01 13:13 竹夭公子 阅读(1619) 评论(0) 推荐(0) 编辑