本帖最后由 zhangdingdinghm 于 2012-1-6 12:56 编辑
package student;
public class student{
String ID;
private int score;
String name;
int classnumber;
int getScore(){
return score;
}
void setScore(int score){
this.score = score;
}
public static void main(String[] args){
student werther=new student();
System.out.println("werther.classnumber"+"2010063030");
System.out.println("werther.ID"+"2010063030030");
System.out.println("werther.name"+"werther");
System.out.println("werther.score"+werther.score);
}
} |