标签:switch out continue 关键字 一次循环 结构 break 内容 style
while( 布尔表达式 ) { //循环内容 }
1 do { 2 //代码语句 3 }while(布尔表达式);
1 for(初始化; 布尔表达式; 更新) { 2 //代码语句 3 }
1 for(声明语句 : 表达式) 2 { 3 //代码句子 4 }
1 int [] numbers = {10, 20, 30, 40, 50}; 2 3 for(int x : numbers ){ 4 System.out.print( x ); 5 System.out.print(","); 6 }
1 for(int i=1; i<=3; i++){ 2 for(int j=1; j<=3; j++){ 3 //循环内容 4 } 5 }
标签:switch out continue 关键字 一次循环 结构 break 内容 style
原文地址:https://www.cnblogs.com/s1mple/p/9876761.html