if-else擴充套件結構練習

qq_52000252發表於2020-11-01

/*
if-else擴充套件結構
*/
import java.util.Scanner;
//導包語句
public class a{
//命名類
public static void main(String [ ]args){
//主方法
Scanner h = new Scanner(System.in);
//Scanner語句使用語句
System.out.println(“請輸入分數”);
//鍵盤輸入資料
int c = h.nextInt();
//鍵盤輸入資料名為變數c
if (c >= 90){System.out.println(“優秀”);
} else if (c >= 80){System.out.println(“良好”);
} else if (c >= 70){System.out.println(“中等”);
} else if (c >= 60){System.out.println(“及格”);
} else {System.out.println(“不及格”);
}
//if-else擴充套件語句
}
}

相關文章