练习1(基础):
建立一个学生类,其中成员变量为学号、姓名、及三门课的成绩(数组),另建立一个包含主方法的类,定义2个学生类的对象
1.Student
package com.hpe.java;
import java.util.Arrays;
/**
* 建立一个学生类,其中成员变量为学号、姓名、及三门课的成绩(数组),另建立一个包含主方法的类,定义2个学生类的对象
* @author yang
*
*/
public class Student {
private int no;
private String name;
private double score[];
public int getNo() {
return no;
}
public void setNo(int no) {
this.no = no;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public double[] getScore() {
return score;
}
public void setScore(double[] score) {
this.score = score;
}
public Student(int no, String name, double[] score) {
super();
this.no = no;
this.name = name;
this.score = score;
}
public Student() {
super();
}
@Override
public String toString() {
return "Student [no=" + no +