網站聲明

本網站包含了各式各樣的資源,如果有侵占到您的著作權,請與本人通知,本人會立即改進。本站所有發表僅屬研究討論性質,如果有任何後果請自行負責。

2015-05-10

TQC+ Java6 條件判斷式 208 分級制度

208.
設計說明:

1. 畫面顯示[Input:],並於下方要求輸入一個分數。
2. 當分數大於等於90分,等極為A,顯示[Your grade is A]。
3. 當分數小於90分並大於等於80分,等及為B,顯示[Your grade is B]。
4. 當分數小於80分並大於等於70分,等及為C,顯示[Your grade is C]。
5. 當分數小於70分並大於等於60分,等及為D,顯示[Your grade is D]。
6. 當分數小於60分,等及為F,顯示[Your grade is F]。
7. 重複五次,執行結果如範例圖。

參考程式碼:
  1. import java.util.*;
  2. public class JPA208{
  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.   System.out.println("Input:");
  13.   int g = keyboard.nextInt();
  14.   if (g>=90)System.out.println("Your grade is A");
  15.   else if (g>=80)System.out.println("Your grade is B");
  16.   else if (g>=70)System.out.println("Your grade is C");
  17.   else if (g>=60)System.out.println("Your grade is D");
  18.   else System.out.println("Your grade is F");
  19.  }
  20. }

TQC+ Java 試題總整理

聲明:

這裡的範例程式碼皆由本人親自編輯,歡迎轉載本教學,但請註明本網站,尊重一下作者的心血

沒有留言:

張貼留言

歡迎留言,較舊文章需要留言審核看不到自己的留言是正常的。
若長時間無回應請使用以下聯絡方式:
填寫表單:https://forms.gle/hxxX9n4tATcFnhnk8
寄信到:happyplayblogs@gmail.com