本帖最後由 李泳霖 於 2022-8-17 18:13 編輯
1.請撰寫一個能輸入國文、英文、數學三科分數的程式
2.程式執行時,如執行結果參考畫面,畫面顯示[Input Chinese score:],請使用者輸入國文分數,再分別依序要求輸入英文、數學的分數。
3.將此三個分數分別存入變數之中,再判斷是否有任何一科不及格,如果有任何一科不及格,則輸出該科不及格,分別顯示[科目+failed.]:如果全部都及格,則輸出全部通過,顯示[ALL Pass.]
4.重複執行四次,顯示如執行結果參考畫面
- import java.util.*;
- public class JPD02 {
- static Scanner keyboard = new Scanner(System.in);
- public static void main(String[] args) {
- test();
- test();
- test();
- test();
- }
-
- static void test() {
- int chi, eng, math, avg;
- System.out.print("Input Chinese score:");
- chi = keyboard.nextInt();
- System.out.print("Input English score:");
- eng = keyboard.nextInt();
- System.out.print("Input Math score:");
- math = keyboard.nextInt();
-
- ...
- }
- }
複製代碼 |