返回列表 發帖

TQC+ 208 分級制度

本帖最後由 葉桔良 於 2022-2-26 20:18 編輯

1.請寫出一個可以輸入學生分數,並判斷分數等級的程式
2.當分數>=90,等級為A,顯示[Your grade is A]。
3.當分數介於90分到80分之間,例如90分>分數>=80分,等級為B,顯示[Your grade is B]。
4.當分數介於80分到70分之間,例如80分>分數>=70分,等級為C,顯示[Your grade is C]。
5.當分數介於70分到60分之間,例如70分>分數>=60分,等級為D,顯示[Your grade is D]。
6.當分數小於60以下,例如60分>分數,等級為F,顯示[Your grade is F]。
7.程式執行時,畫面顯示[Input],請使用者輸入一個整數。
8.重複執行五次,顯示如執行結果參考畫面。
  1. import java.util.*;
  2. class JPA02 {
  3.     static Scanner keyboard = new Scanner(System.in);
  4.     public static void main(String[] args) {
  5.         test();
  6.         test();
  7.         test();
  8.         test();
  9.         test();
  10.     }

  11.     public static void test() {
  12.             int score;
  13.             System.out.println("Input:");
  14.             score=keyboard.nextInt();
  15.             System.out.print("Your grade is ");
  16.             if(score>=90)
  17.                     System.out.println("A");
  18.             if(score>=80 && score<90)
  19.                     System.out.println("B");
  20.             if(score>=70 && score<80)
  21.                     System.out.println("C");
  22.             if(score>=60 && score<70)
  23.                     System.out.println("D");
  24.             if(score<60)
  25.                     System.out.println("F");         
  26.     }
  27. }
複製代碼

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表