#P86-P101 2021-12-30 #P102-P115 2022-01-03 #P116-P123 2022-01-05 #P124-P126 2022-01-12
#P127-P135 2022-01-13 项目编写和复习
1、流程控制
1)顺序结构
2)分支结构
- if...else
- switch-case switch结构中的表达式,只能是如下6种数据类型之一,byte,short,char,int,string,枚举类型。
3)循环结构
for
while
do-while
带标签的break和continue 即带有label
1 label:for(int i=0;i<3;i++){ 2 for(int j=1;j<=10;j++){ 3 if(j%4==0){ 4 //break label; 5 continue label; 6 } 7 System.out.print(j); 8 } 9 System.out.println(); 10 }