網站聲明

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

2015-05-09

TQC+ Java6 條件判斷式 206 及格分數

206.
設計說明:

1. 畫面顯示[Input Chinese score:],並於後方要求輸入國文分數,再分別要求輸入英文、數學分數。
2. 如果任何一科不及格,則分別顯示[科目+failed.],如果全部都及格則顯示[All Pass.],重複四次,執行結果如範例圖。

參考程式碼:
  1. import java.util.*;
  2. public class JPA206{
  3.  static Scanner keyboard = new Scanner(System.in);
  4.   public static void main(String[] args) {
  5.   test();        
  6.   test();
  7.   test();
  8.   test();
  9.  }
  10.  static void test() {
  11.   int chi, eng, math;
  12.   System.out.print("Input Chinese score:");
  13.   chi = keyboard.nextInt();
  14.   System.out.print("Input English score:");
  15.   eng = keyboard.nextInt();
  16.   System.out.print("Input Math score:");
  17.   math = keyboard.nextInt();
  18.   if (chi<60) System.out.println("Chinese failed.");
  19.   if (eng<60) System.out.println("English failed.");
  20.   if (math<60) System.out.println("Math failed.");
  21.   if(chi >60 && eng >60 && math >60) System.out.println("All pass.");
  22.  }
  23. }

TQC+ Java 試題總整理

聲明:

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

沒有留言:

張貼留言

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