Question: Hi All , I have a java lab i need to do and I need help with this. I need to implement a method to
Hi All , I have a java lab i need to do and I need help with this. I need to implement a method to Build a list of the names of students currently enrolled in a number of units strictly greater than the unitThreshold....
________________________________________________________
| /* | ||||||||||||||||||||||||||||||||||||||
| * This file should remain unchanged. | ||||||||||||||||||||||||||||||||||||||
| */ | ||||||||||||||||||||||||||||||||||||||
| class Course | ||||||||||||||||||||||||||||||||||||||
| { | ||||||||||||||||||||||||||||||||||||||
| private final String name; | ||||||||||||||||||||||||||||||||||||||
| private final int numUnits; | ||||||||||||||||||||||||||||||||||||||
| public Course(final String name, final int numUnits) | ||||||||||||||||||||||||||||||||||||||
| { | ||||||||||||||||||||||||||||||||||||||
| this.name = name; | ||||||||||||||||||||||||||||||||||||||
| this.numUnits = numUnits; | ||||||||||||||||||||||||||||||||||||||
| } | ||||||||||||||||||||||||||||||||||||||
| public String getName() | ||||||||||||||||||||||||||||||||||||||
| { | ||||||||||||||||||||||||||||||||||||||
| return name; | ||||||||||||||||||||||||||||||||||||||
| } | ||||||||||||||||||||||||||||||||||||||
| public int getNumUnits() | ||||||||||||||||||||||||||||||||||||||
| { | ||||||||||||||||||||||||||||||||||||||
| return numUnits; | ||||||||||||||||||||||||||||||||||||||
| } | ||||||||||||||||||||||||||||||||||||||
| } _________________________________________________
|
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
