develop #2

Open
Fateme_Azizi wants to merge 6 commits from develop into main
Showing only changes of commit 41b8d9af0a - Show all commits
@@ -33,8 +33,10 @@ public class RegistrationSystem {
public void showAllCourses() {
for(int i=0 ; i < courses.size() ; i++) {
System.out.print("Course " + i+1 + ": ");
System.out.println(courses.get(i).getCourseName() + " " + courses.get(i).getCourseCode());
System.out.print("Course");
System.out.print(i+1);
System.out.print(" : " + courses.get(i).getCourseName() + " " + courses.get(i).getCourseCode());
System.out.println(", capacity : " + courses.get(i).getCapacity());
}
}
}