Git-Leon пре 6 година
родитељ
комит
63e0039d71
No account linked to committer's email
1 измењених фајлова са 9 додато и 0 уклоњено
  1. 9
    0
      README.md

+ 9
- 0
README.md Прегледај датотеку

@@ -228,3 +228,12 @@
228 228
 ### Part 11.2 - Test `Alumni` Class
229 229
 * Write a test class which ensures that each `Student` in the `Alumni` class has been taught `1200` hours upon injection of the `Alumni` dependency.
230 230
 * Ensure the `numberOfHoursTaught` has been evenly distributed amongst each of the instructors.
231
+
232
+* **Tip:** How to derive `numberOfHoursTaught` dynamically
233
+```java
234
+int numberOfInstructors = instructors.size();
235
+int numberOfStudents = students.size();
236
+double numberOfHoursToTeachEachStudent = 1200;
237
+double numberOfHoursToTeach = numberOfHoursToTeachEachStudent * numberOfStudents;
238
+double numberOfHoursPerInstructor = numberOfHoursToTeach / numberOfInstructors;
239
+```