الرجوع
تسجيل الدخول

Insert XXX to output the student's ID.

public class Student {
    private double myGPA;
    private int myID;

    public int getID() {
        return myID;
    }

    public static void main(String[] args) {
        Student s = new Student();
        XXX
    }
}