Java写一个接口和两个类,要求如下

编写一个接口和两个类,要求如下:(1)设计一个学生功能的接口,实现平均成绩的计算和基本信息的输出。(2)设计一个学生类实现了学生接口,学生类的基本信息有:学号、姓名、年龄... 编写一个接口和两个类,要求如下:
(1)设计一个学生功能的接口,实现平均成绩的计算和基本信息的输出。
(2)设计一个学生类实现了学生接口,学生类的基本信息有:学号、姓名、年龄、各科成绩(假设一共5门课程,请用数组实现)。
(3)设计一个大学生类继承了学生类:
大学生除了包含普通学生的信息外,还包包含:德育成绩、体育成绩、美育成绩;以及一个能够算综合排名成绩的成员方法(假设综合排名成绩=德育成绩+体育成绩+美育成绩+平均成绩)
最后编写一个main方法测试上面的两个类。
展开
 我来答
匿名用户
2013-10-28
展开全部
//接口 IStudent.javapublic interface IStudent {
public double avgScore();
public void outputInfo();
} //类Studentpublic class Student implements IStudent {
private String sno;
private String name;
private int age;
public double[] scores;
public Student(String sno,String name,int age,double []score){
this.name = name;
this.scores= score;
this.age = age;
this.sno = sno;
}
public double avgScore() {
double total= 0;
for(int i=0,len=scores.length;i<len;i++){
total += scores[i];
}
return total;
} public void outputInfo() {
System.out.println("学号 "+sno+" 姓名 "+name +"年龄 "+age);
}}
//类 CollegeStudent大学生public class CollegeStudent extends Student {
private double dy;
private double ty;
private double my;
public CollegeStudent(String sno,String name,int age,double [] score,double dy,double ty,double my){
super(sno, name, age, score);
this.dy = dy;
this.ty = ty;
this.my = my;
}
public double calScore(){
return avgScore()+dy+ty+my;
}
public static void main(String []args){
double []score = {100,100,100,100,100};
CollegeStudent collegeStudent = new CollegeStudent("06411100","张三",20,score,100.0,100.0,100.0);
collegeStudent.outputInfo();
System.out.println("平均成绩 "+collegeStudent.avgScore());
System.out.println("综合成绩 "+collegeStudent.calScore());
}
}//
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式