- 6
- 0
- 约6.58千字
- 约 34页
- 2016-03-07 发布于湖北
- 举报
* * A 条 件P 直 到 型 循 环 假 真 循环 A 当 型 循 环 真 假 假 条 件P while(condition) statement; Or while(condition) { statement; statement; } while循环语句 initial?value?; while(condition) { statement; update?condition; } i=1?; while(i=100) { s=s+i; i++; } do{ statement; statement; }while(condition); do-while循环语句 initial?value?; do { statement; update?condition; }while(condition); i=1?; do { s=s+i; i++; }while(i=100); for(initial?value?;???condition;???update?condition)? statement; Or for(initial?value?;???condition;???update?condition) ?{ sta
原创力文档

文档评论(0)