一道java题 请设计一个学生类Student。属性包括:学号、姓名、英语成绩、数学成绩、计算机

一道java题请设计一个学生类Student。属性包括:学号、姓名、英语成绩、数学成绩、计算机成绩、总成绩。方法包括:构造方法、compare方法(比较两个学生的总成绩,... 一道java题

请设计一个学生类Student。属性包括:学号、姓名、英语成绩、数学成绩、计算机成绩、总成绩。方法包括:构造方法、compare方法(比较两个学生的总成绩,结果分大于、小于、等于),sum方法(计算总成绩)、testScore方法(计算评测成绩,可以取三门课成绩的平均分)。
老师布置的作业,求求各位大神了!
展开
 我来答
骤雨浓
2016-12-30 · TA获得超过228个赞
知道小有建树答主
回答量:178
采纳率:0%
帮助的人:61万
展开全部
package zk.maple.Robot.Component.Head;

public class Student{
private String sno;
private String name;
private String englishScore;
private String computerScore;
private String mathScore;
public String getSno() {
return sno;
}
public void setSno(String sno) {
this.sno = sno;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getEnglishScore() {
return englishScore;
}
public void setEnglishScore(String englishScore) {
this.englishScore = englishScore;
}
public String getComputerScore() {
return computerScore;
}
public void setComputerScore(String computerScore) {
this.computerScore = computerScore;
}
public String getMathScore() {
return mathScore;
}
public void setMathScore(String mathScore) {
this.mathScore = mathScore;
}

}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
小天判定
2017-01-18 · TA获得超过303个赞
知道小有建树答主
回答量:313
采纳率:0%
帮助的人:155万
展开全部
package com.nemo.test;

/**
 * 学生类
 */
public class Student {

private int stuId; // 学号
private String stuName; // 姓名
private float englishScore; // 英语成绩
private float mathScore; // 数学成绩
private float computerScore;// 计算机成绩

public int getStuId() {
return stuId;
}

public void setStuId(int stuId) {
this.stuId = stuId;
}

public String getStuName() {
return stuName;
}

public void setStuName(String stuName) {
this.stuName = stuName;
}

public float getEnglishScore() {
return englishScore;
}

public void setEnglishScore(float englishScore) {
this.englishScore = englishScore;
}

public float getMathScore() {
return mathScore;
}

public void setMathScore(float mathScore) {
this.mathScore = mathScore;
}

public float getComputerScore() {
return computerScore;
}

public void setComputerScore(float computerScore) {
this.computerScore = computerScore;
}

}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式