2012年11月7日 星期三

TQC+ JAVA 206

TQC+ JAVA 206 及格分數



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, 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();
       
        if(chi>=60 && eng>=60 && math>=60)
        System.out.println("All pass.\n");
        if(chi<60)
        System.out.printf("Chinese failed.\n");
        if(eng<60)
        System.out.printf("English failed.\n");
        if(math<60)
        System.out.printf("Math failed.\n");      
    }
}

沒有留言:

張貼留言