Mdevelop #3

Merged
Meraj merged 4 commits from Mdevelop into main 2026-05-19 15:07:32 +00:00
4 changed files with 4 additions and 1 deletions
Showing only changes of commit 8e69c031e1 - Show all commits
+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
} }
} }