首页 > 代码库 > 16年10月18号2th运算符与流程结构
16年10月18号2th运算符与流程结构
---恢复内容开始---
2th:
一:运算符
算数运算符 + - * / %取余 9%3=0 ++自增 --自减
关系运算符 < <= > >= ==全等于 !=不等于
逻辑运算符 & | !非 ^异或 &&短路与 || 短路或
赋值运算符 = += -= <= >=
位运算符 & | ! ~异或 << 左移 >> 右移
二:流程结构
1顺序结构 顺序执行
2选择结构
2.1选择结构 多选一 switch(){ case 1: 语句 break }
int anJian = 1;
switch(anJIan){
case 1:
System.out.print();
break;
case 2:
System.out.print();
break;
}
2.2选择结构 二选一 if(){}else{}
if(4>5){
System.out.print(true);
}else{
System.out.print(false);
}
3循环结构
3.1 do{语句}while(表达式);
int i = 1;
do{
System.out.print(i);
i++
}while(i<10);
3.2 while(表达式){语句}
int i = 1;
while(i<2){
System.out.print(i);
i++
}
16年10月18号2th运算符与流程结构