一道java题 请设计一个学生类Student。属性包括:学号、姓名、英语成绩、数学成绩、计算机
一道java题请设计一个学生类Student。属性包括:学号、姓名、英语成绩、数学成绩、计算机成绩、总成绩。方法包括:构造方法、compare方法(比较两个学生的总成绩,...
一道java题
请设计一个学生类Student。属性包括:学号、姓名、英语成绩、数学成绩、计算机成绩、总成绩。方法包括:构造方法、compare方法(比较两个学生的总成绩,结果分大于、小于、等于),sum方法(计算总成绩)、testScore方法(计算评测成绩,可以取三门课成绩的平均分)。
老师布置的作业,求求各位大神了! 展开
请设计一个学生类Student。属性包括:学号、姓名、英语成绩、数学成绩、计算机成绩、总成绩。方法包括:构造方法、compare方法(比较两个学生的总成绩,结果分大于、小于、等于),sum方法(计算总成绩)、testScore方法(计算评测成绩,可以取三门课成绩的平均分)。
老师布置的作业,求求各位大神了! 展开
展开全部
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;
}
}
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;
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
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;
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询