Untitled

Anonymous
plain_text
01/20/2024 1:16 AM
460 B
57
Indexable
public class Student
{
    /*
     * This class is complete. You do not need
     * to add anything.
     */
    private String name;
    private int grade;
    
    public Student(String name, int grade)
    {
        this.name = name;
        this.grade = grade;
    }
    
    public String getName()
    {
        return this.name;
    }
}
Editor is loading...
Leave a Comment