选择结构
if,判断为true执行的语句
单项选择,双向选择,多项选择
if(){}
/**
* if选择结构
*/
public class IfDemo01 {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.println("请输入内容:");
//键盘输入
String s = scanner.nextLine();
//equals:判断字符串是否相等
if ("Hello".equals(s)){
System.out.println(s);
}
System.out.println("End");
scanner.close();
}
}
if()else{}
/**
* if()else {}选择结构
*/
public class IfDemo02 {
public static void main(String[] args) {
//考试分数大于60就是及格,小于六十就是不及格。
Scanner scanner = new Scanner(System.in);
System.out.println("请输入成绩:");
final int score = scanner.nextInt();
if (score>=60){
System.out.println("及格");
}else{
System.out.println("不及格");
}
scanner.close();
}
}
if(){}else if(){}else{}
/**
* if(){}else if(){}else{}
*/
public class IfDemo03 {
public static void main(String[] args) {
//考试分数大于60就是及格,小于六十就是不及格。
Scanner scanner = new Scanner(System.in);
/*
if 语句至多有一个else 语句,else 语句在所有的else if语句之后
if 语句可以有若干个else if 语句,它们必须在else 语句之前
一旦其中一个 else if 语句检测为 true,其他的 else if 以及 else 语句都将跳过执行
*/
System.out.println("请输入成绩:");
final int score = scanner.nextInt();
if (score==100){
System.out.println("恭喜满分");
}else if (score<100 && score>=90){
System.out.println("A级");
}else if (score<90 && score>=80){
System.out.println("B级");
}else if (score<80 && score>=70){
System.out.println("C级");
}else if (score<70 && score>=60){
System.out.println("D级");
}else if (score<60 && score>=0){
System.out.println("不及格");
} else {
System.out.println("成绩不合法");
}
scanner.close();
}
}
switch语句
格式
char grade = 'C';
switch (grade){
case '1':
System.out.println("优秀");
break; //可选 出口
case '2':
System.out.println("良好");
break;
case '3':
System.out.println("及格");
break;
case '4':
System.out.println("再接再厉");
break;
case '5':
System.out.println("挂科");
break;
default:
System.out.println("未知等级");
}
}
}

浙公网安备 33010602011771号