107 運動成績

public class JPA107 {
    public static void main(String argv[]) {
        int action = 1, skill = 2, teamgame = 3;

Basketball Basketball = new Basketball();
Baseball Baseball = new Baseball();

        System.out.println("The basketball grade is " + Basketball.calGrade(action,skill,teamgame));
        System.out.println("The baseball grade is " + Baseball.calGrade(skill,teamgame));
    }
}


class Basketball {
    int calGrade(int a,int s,int t){
        return a + s + t;
    }
}


class Baseball {
    int calGrade(int s,int t){
        return 10 + s + t;
    }
}

沒有留言:

張貼留言