Untitled

 avatar
unknown
java
3 years ago
309 B
4
Indexable

            for (int j = 0; j < studentList.size(); j++) {
                if (studentList.get(j).getID() != deposit_ID) {
                    System.out.println(deposit_ID + " does not exist in the database!");
                    Main.sysPause();
                    return;
                }
            }
Editor is loading...