1.编写一个学生类,它的成员变量有考生的name(姓名)、id(考号)、intgretResult(综合成绩)、sports(体育成绩)。它有一个设置学生name和id初始值的方法和分别获取学生的intgretResult(综合成绩)及sports(体育成绩)值的两个方法。
在学生类中添加main()方法,定义并实例化2个学生对象,调用设置初始值的方法完成学生name、id的值,显示两个学生的钕name与intgretResult(综合成绩)及sports(体育成绩)的值。
String name;
double sports;
int id;
double intgretResult;
public student1(String n,double s,int i,double a){
this.name=n;
this.sports=s;
this.id=i;
this.intgretResult=a;
public int getid(){
return this.id;
}
public double getintgretResult(){
return this.intgretResult;
}
public double getsports(){
return this.sports;
}
public String toString(){
return this.name;
}
public static void main(String args[]){
student1 xuesheng1=new student1(01,"陈好",85.2,89.5);
System.out.println(student1.getid());
System.out.println(student1.toString());
System.out.println(student1.getintgretResult());
System.out.println(student1.getsports());
student1 xuesheng2=new student1(02,"李红",83.5,88);
System.out.println(student1.getid());
System.out.println(student1.toString());
System.out.println(student1.getintgretResult());
System.out.println(student1.getsports());
}
}