We need to find the minimum number of rooms such that each room has the same number of students and students from each subject are placed in separate rooms. This implies the number of students in each room must divide evenly into the total number of students for each subject.
The total number of students for each subject is:
- A: 60 students,
- B: 84 students,
- C: 108 students.
The greatest common divisor (GCD) of 60, 84, and 108 gives us the maximum number of students that can be assigned to each room:
\[
\text{GCD}(60, 84, 108) = 12.
\]
Therefore, the number of rooms required for each subject is:
- For A: \( \frac{60}{12} = 5 \),
- For B: \( \frac{84}{12} = 7 \),
- For C: \( \frac{108}{12} = 9 \).
Thus, the total number of rooms required is:
\[
5 + 7 + 9 = 21.
\]