2009年1月14日 星期三

Java小練習(4)

本程式需要處理分數等級。使用者輸入分數,能顯示等級。
 條件   輸出結果
##############################################
   分數高於90  分數 ? 分、等級 A+
分數低於90高等於80  分數 ? 分、等級 A
分數低於80高等於70  分數 ? 分、等級 B
分數低於70高等於60  分數 ? 分、等級 C
   分數低於60  分數 ? 分、等級 Failed
##############################################
####### source code starts ###################
import java.util.Scanner;

public class Lab4{
    public static void main(String args[]){
        System.out.println("Please enter your score:");
        Scanner keyin = new Scanner(System.in);
        int score = keyin.nextInt();
        if(score > 90){
            System.out.println("You got A+ !");
        }else if(score >= 80){
            System.out.println("You got A !");
        }else if(score >= 70){
            System.out.println("You got B !");
        }else if(score >= 60){
            System.out.println("You got C !");
        }else{
            System.out.println("Asshole! You failed!");
        }
    }
}

沒有留言: