public class if01 {
public static void main(String[] args) {
//if单选择结构
Scanner scanner = new Scanner(System.in);
System.out.println("请输入内容:");
String s = scanner.nextLine();
//equals:判断字符串是否相等
if (s.equals("Hello")){
System.out.println(s);
}
System.out.println("end");
scanner.close();
}
}
public class if02 {
public static void main(String[] args) {
//if双选择结构
//考试分数大于60及格,小于60不及格
Scanner scanner = new Scanner(System.in);
System.out.println("请输入成绩:");
int score = scanner.nextInt();
if (score>60){
System.out.println("及格");
}else{
System.out.println("不及格");
}
scanner.close();
}
}
public class if03 {
public static void main(String[] args) {
//if多选择结构
Scanner scanner = new Scanner(System.in);
System.out.println("请输入成绩:");
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();
/*注意事项
1.if语句至多有1个else语句,else语句在所有的else if语句之后
2.if语句可以有若干个else if语句,他们必须在else语句之前
3.一旦其中一个else if语句检测为ture,其他的else if以及else语句都将跳过执行
*/
//嵌套的if结构
/*if(布尔表达式1){
sout
if(布尔表达式2){
sout}
}
*/
}
}