第五章 循环结构
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了第五章 循环结构相关的知识,希望对你有一定的参考价值。
第五章 循环结构
英语新识:
while 循环 do 执行 index 牵引 bug 错误 debug 调试
equal 相等 step 步骤 error 错误
结构框图:
语法新知:
一:
while:
int num=0;
while( i<4){
System.out.println(" ");
i++;
}
二:
do-while:
do{
System.out.println (" ");
}while(!"y".equals(answer));
注:
1.确实的赋值
2.{ }的范围确定
3." i"值的改变 //先执行,后判断.
以上是关于第五章 循环结构的主要内容,如果未能解决你的问题,请参考以下文章