-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcourse13_13.java
65 lines (48 loc) · 1.37 KB
/
course13_13.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
public class course13_13 {
public static void main(String[] args) {
Course course = new Course("first");
course.addStudent("小明");
course.addStudent("小命");
course.addStudent("小名");
for (String e : course.getStudents()) {
if (e != null)
System.out.println(e);
}
}
}
class Course {
private String courseName;
private int numberOfStudents;
private String[] students = new String[100];
Course () {
}
Course (String courseName) {
this.courseName = courseName;
}
public void addStudent(String student) {
students[numberOfStudents] = student;
numberOfStudents ++;
}
public String[] getStudents() {
return students;
}
public int getNumberOfStudents() {
return numberOfStudents;
}
public String getCourseName() {
return courseName;
}
public void dropStudent(String student) {
int start = 0 , end = numberOfStudents;
for (int i = 0 ; i < numberOfStudents ; i ++ ) {
if (students[i] == student)
start = i;
}
for (int i = start ; start <= end ; i ++ ) {
students[i] = students[i + 1];
}
numberOfStudents --;
}
}
interface clone {
}