X607: Implement a constructor

Given the following constructor, set the fields to the corresponding parameters.

Your Answer:

x
 
1
public class Course
2
{
3
  public int number;
4
  public String title;
5
  public String department;
6
  public int capacity;
7
8
  public Course(int num, String t, String dept, int cap)
9
  {
10
    
11
  }
12
}
13

Feedback

Your feedback will appear here when you check your answer.