You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
321 B

public class Student {
int studentID;
String name;
float score;
public Student(int studentID,String name,float score){
this.name=name;
this.studentID=studentID;
this.score=score;
}
public void study(){
System.out.println(name+studentID+score);
}
}