为什么选完课没输出
为什么选完课没输出
为什么选完课没输出
2017-04-21
public static void main(String[] args) {
Testset p = new Testset();
p.TestAdd();
p.testGet();
Student student = new Student("1", "小明");
System.out.println("欢迎" + student.name + "选课!");
// 创建一个scanner对象用来接收
Scanner console = new Scanner(System.in);
for (int i = 0; i < 3; i++) {
System.out.println("请输入课程ID");
String courseId = console.next();
for (Course cr : p.coursesTo) {
if (cr.id.equals(courseId)) {
student.courses.add(cr);
}
}
}
p.test();
}
举报