if 选择语句

选择结构

  • if单选择结构

  • if双选择结构

  • if多选择结构

  • 嵌套的if结构

  • switch多选择结构

语法

if(布尔表达式){
   //如果布尔表达式为true奖执行的语句
}
  • if单选择结构

package com.kuang.struct;
?
import java.util.Scanner;
?
public class IfDemo1 {
   public static void main(String[] args) {
       Scanner scanner = new Scanner(System.in);
?
       System.out.println("请输入内容:");
?
       String s = scanner.nextLine();//用于接收用户的输入内容,存入s中
?
       //equals:判断字符串是否相等
       if(s.equals("hello")){
           System.out.println(s);
      }
?
       System.out.println("End");
  • if双选择结构

package com.kuang.struct;
?
import java.util.Scanner;
?
public class IfDemo2 {
   public static void main(String[] args) {
       //考试分数大于60分就是及格,小于60分就是不及格
       Scanner scanner = new Scanner(System.in);
?
       System.out.println("请输入您的成绩:");
       int score = scanner.nextInt();
?
       if(score>60){
           System.out.println("您的成绩为"+score+",您的成绩及格了");
      }else{
           System.out.println("您的成绩为"+score+",您的成绩不及格");
      }
?
?
?
?
       scanner.close();
  }
}
  • if多选择结构

package com.kuang.struct;
?
import java.util.Scanner;
?
public class IfDemo3 {
   public static void main(String[] args) {
       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 && ){
           System.out.println("E级");
      } else{
           System.out.println("成绩不合法");
      }
?
?
       scanner.close();
  }
}
  • 嵌套的if语句

    • 使用嵌套的if...else 语句是合法的,也就是说你可以在另一个if或者else if 语句中使用if或者else if语句。

if 选择语句

上一篇:GitLab: Author ‘xxx‘ is not a member of team


下一篇:Go从入门到精通——创建方法和接口