1 Commits
Author SHA1 Message Date
Soroush 9c91b1a302 Workshop-4 2026-05-06 15:35:07 +03:30
6 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -304,4 +304,4 @@ public class Main {
return -1;
}
}
}
}
+1 -1
View File
@@ -65,4 +65,4 @@ public class Course {
return "[ID:" + id + "] " + name + " (No teacher assigned)";
}
}
}
}
+1 -1
View File
@@ -35,4 +35,4 @@ public class Student extends User {
return sb.toString();
}
}
}
}
+1 -1
View File
@@ -54,4 +54,4 @@ public class Teacher extends User {
}
return course.getStudentsDisplay();
}
}
}
+1 -1
View File
@@ -39,4 +39,4 @@ public abstract class User {
User user = (User) obj;
return username.equalsIgnoreCase(user.username);
}
}
}
+1 -1
View File
@@ -103,4 +103,4 @@ public class SchoolSystem {
public List<Course> getAllCourses() {
return allCourses;
}
}
}