标签:表达 运行 迭代 java 关键字 步骤 检测 语句块 程序
说明:
/*格式
for(初始化; 布尔表达式; 更新) {
//代码语句
}
*/
public class Test {
public static void main(String args[]) {
for(int x = 0; x < 5; x++) {
System.out.println("value of x : " + x );
}
}
}
运行结果:
value of x : 0
value of x : 1
value of x : 2
value of x : 3
value of x : 4
/*格式
while(布尔表达式){
//循环内容
}
*/
public class Test {
public static void main(String args[]) {
int x = 0;
while( x < 5 ) {
System.out.println("value of x : " + x );
x++;
}
}
}
运行结果:
value of x : 0
value of x : 1
value of x : 2
value of x : 3
value of x : 4
for(;;){}
while(true){}
/*格式
do{
//代码语句
}while(布尔表达式);
*/
public class Test {
public static void main(String args[]){
int x = 0;
do{
System.out.println("value of x : " + x );
x++;
}while( x < 5 );
}
}
运行结果:
value of x : 0
value of x : 1
value of x : 2
value of x : 3
value of x : 4
/*格式
break;//加入这句语句
*/
public class Test {
public static void main(String args[]){
for(int x = 0; x < 10; x++){
if( x == 5 ){
break;
}
else{}
System.out.println("value of x : " + x);
}
}
}
运行结果:
value of x : 0
value of x : 1
value of x : 2
value of x : 3
value of x : 4
public class Test {
public static void main(String args[]){
for(int x = 0; x < 5; x++){
if( x == 2 ){
continue;
}
else{}
System.out.println("value of x : " + x);
}
}
}
运行结果:
value of x : 0
value of x : 1
value of x : 3
value of x : 4
标签:表达 运行 迭代 java 关键字 步骤 检测 语句块 程序
原文地址:https://www.cnblogs.com/hen-java/p/12599007.html