今天下了点雨
一.运算符:(1)算数运算符+ - * / % ;
(2)赋值运算符;+=默认强转
(3)关系运算符”==”和”=”区别.== != >= <= > < ;结果是bollean
(4)逻辑运算符:&,|,,!,&&,||
逻辑运算符参与运算的是boolean值,结果:bollean
&与and:全是true结果为true
|或or:有一个 true结果为true
^亦或:运算两边相同时候false,不同true
!非,取反:
&&短路与:出现true,后面不计算,&:全部计算
||短路或:出现false,后面不计算,|:全部计算
(5)三元运算符
二.控制语句
1.if(){
}else if(){
}…
else{
}
2.循环语句
2.1 for(;;){}
2.2 while
2.3 do while//必然运算一次
2.4 break与continue
3.random与scanner类
3.1 random类
(1)导入包
(2)格式 Random r=new Random();
int i=r.nextInt(100);
3.2 scanner类
(1)导入包
(2)格式 Scanner sc=new Scanner(System.in);
int j=sc.nextInt();
三.补充
a:for(;;){
b:for(){
break a;// 停止a:for循环
}
} |