忠告:量变产生质变
1、if语句:
if{
}else{
}
if{
}else if{
}
2、switch语句:
switch(表达式){
case 值 :代码块;break;
......
default :代码块;break;
}
case穿透
3、三目运算符:
x ? y : z;
x为Boolean的语句、若为真执行y、若为假执行z
4、循环
for(int i = 0;i < 100; i++){
代码块;
}
while(Boolean类型){
}
do
……
while(Boolean类型){
}
break跳转。
5、输入
Scanner类
Scanner scanner = new Scanner(System.in);
String str = scanner.next(); //接String类型
网友评论