1 算术运算符
符号是运算符 整体是表达式
2 字符+操作
默认转int
3 字符串+操作
变字符串
4 案例数值拆分
Scanner scanner = new Scanner(System.in); int i = scanner.nextInt(); System.out.println("请输入三位数"); System.out.println("个位:"+i%10); System.out.println("十位"+i/10%10); System.out.println("百位"+i/100);
5 自增自减运算
在前先自增 后运算 在后先运算后自增
6 赋值运算符
基本赋值运算符 = 扩展赋值运算符 += -= 暗含强制转换
7 关系运算符
< > != ==
8 逻辑运算符
& |
9 短路逻辑运算符
&&||
10 三元运算符
关系表达式 ?表达式1:表达式2
11 案例三个和尚
Scanner scanner = new Scanner(System.in); int a = scanner.nextInt(); int b = scanner.nextInt(); int c = scanner.nextInt(); System.out.println( a>b?a>c?a:c:b>c?b:c);
7