2012年10月12日 星期五

TQC+ JAVA 201

TQC+ JAVA 201 分數篩選



import java.util.Scanner;
public class JPA02 {
    static Scanner keyboard = new Scanner(System.in);
   

    public static void main(String[] args) {
        test();
        test();
    }
   
    public static void test() {
        System.out.println("Please enter score:");
        int score=keyboard.nextInt();
        if(score>=60)
        System.out.println("You pass");
        System.out.println("End");
    }
}

沒有留言:

張貼留言