java中的循环结构:
while循环
int i=1;
while(i<=5){
System.out.println("第"+i+"次打印");
i++;
}
do-while循环
do {
System.out.println("打印do");
}while (false);
for循环
适用于执行次数确定的循环。
for(int b=1;b<=5;b+=2){
System.out.println("打印b="+b);
}
for-each循环
可以快速对数组进行遍历,无需知道数组的长度。
int[] shu={11,22,23,15};
for(int c:shu){
System.out.println(c);
}
标签:do,java,int,System,while,循环,结构 From: https://www.cnblogs.com/luoshuai7394/p/17894861.html