標題:
[作業]TQC+ 206 及格分數
[打印本頁]
作者:
李泳霖
時間:
2022-2-19 20:30
標題:
[作業]TQC+ 206 及格分數
本帖最後由 葉桔良 於 2022-2-26 19:17 編輯
1.請撰寫一個能輸入國文、英文、數學三科分數的程式
2.程式執行時,如執行結果參考畫面,畫面顯示[Input Chinese score:],請使用者輸入國文分數,再分別依序要求輸入英文、數學的分數。
3.將此三個分數分別存入變數之中,再判斷是否有任何一科不及格,如果有任何一科不及格,則輸出該科不及格,分別顯示[科目+failed.]:如果全部都及格,則輸出全部通過,顯示[ALL Pass.]
4.重複執行四次,顯示如執行結果參考畫面
import java.util.*;
public class JPA02 {
static Scanner keyboard = new Scanner(System.in);
public static void main(String[] args) {
test();
test();
test();
test();
}
static void test() {
int chi, eng, math;
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();
if(chi>=60 && eng>=60 && math>=60)
{
System.out.println("All pass.");
}else
{
if(chi<60)
System.out.println("Chinese failed.");
if(eng<60)
System.out.println("English failed.");
if(math<60)
System.out.println("Math failed.");
}
}
}
複製代碼
作者:
李泳霖
時間:
2022-2-19 20:30
此帖僅作者可見
作者:
丁肇志
時間:
2022-2-19 20:52
此帖僅作者可見
作者:
顏宇鋒
時間:
2022-2-20 09:51
此帖僅作者可見
作者:
蔡旭恩
時間:
2022-2-26 19:18
此帖僅作者可見
作者:
文硯
時間:
2022-2-26 19:22
此帖僅作者可見
作者:
曾元瑜
時間:
2022-2-26 19:24
此帖僅作者可見
作者:
張博竣
時間:
2022-2-26 19:25
此帖僅作者可見
作者:
黃韋誌
時間:
2022-3-3 23:36
此帖僅作者可見
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2