matin mortazavi / work shop + bonus

This commit is contained in:
Matin
2026-04-20 21:34:24 +04:30
parent ca498f1f28
commit 8e69c031e1
4 changed files with 4 additions and 1 deletions
+1 -1
View File
@@ -10,7 +10,7 @@ public class Course {
this.courseCode = courseCode; this.courseCode = courseCode;
this.capacity = capacity; this.capacity = capacity;
} }
// test
public String getCourseName() { public String getCourseName() {
return courseName; return courseName;
} }
+1
View File
@@ -23,6 +23,7 @@ public class Main {
Ali.dropCourse(Ap) ; Ali.dropCourse(Ap) ;
Ali.showRegisteredCourses(); Ali.showRegisteredCourses();
reg.showcapacity(); reg.showcapacity();
//test
} }
@@ -20,6 +20,7 @@ public class RegistrationSystem {
} }
} }
// test
public Course findCourseByCode(String code) { public Course findCourseByCode(String code) {
@@ -35,6 +35,7 @@ public class Student {
else else
{ {
return false ; return false ;
// test
} }
} }