close

package date0708;

import java.util.Scanner;

public class Ex2 {
    /*
     * 輸入成績值,若小於60顯示"不及格"; 若大於等於60,小於等於100顯示"及格"; 若小於0或大於100,顯示"輸入錯誤"!
     */

    public static void main(String[] args) {

        int num;

        Scanner scn = new Scanner(System.in);
        System.out.println("請輸入一個數字");
        num = scn.nextInt();

        if (num < 60) {
            System.out.println("不及格");
        }
        if (num >= 60 && num <= 100) {
            System.out.println("及格");
        }
        if (num < 0 || num > 100) {
            System.out.println("輸入錯誤");
        }

        scn.close();

    }

}
 

 

image

arrow
arrow
    創作者介紹
    創作者 STORY 的頭像
    STORY

    STORY

    STORY 發表在 痞客邦 留言(0) 人氣()