java循环结构
多数情况下,要让循环给停下来,不要死循环
-
while循环
while(布尔表达式){
//循环内容
}
-
do while循环
do{
//循环内容
}while(布尔表达式)
-
for 循环 (增强for循环)
for(初始化;布尔表达式;更新){
//循环内容
}
//死循环
for(; ;){
//内容
}
for循环是支持迭代的一种通用结构,是最有效、最灵活的循环结构。
练习
九九乘法表
package charpter2;
public class NineNine {
public static void main(String[] args) {
for(int i=1;i<10;i++){
for(int j=1;j<=i;j++)
System.out.print(j+"*"+i+"="+i*j+"\t");
System.out.println();
}
}
}
增强for循环(遍历数组和集合)
package charpter2;
public class NewFor {
public static void main(String[] args) {
int[] numbers = {10,20,30,40,50};
//增强for循环遍历
for(int x:numbers){
System.out.println(x);
}
}
}
break:强制退出循环
continue:终止一次循环
goto:一般不要用!!!用label:操作
标签:java,int,System,while,循环,out,public,结构 From: https://www.cnblogs.com/ssl-study/p/16728146.html