@@ -11,7 +11,7 @@ fields that hold the department (for example, ENG), the course number (for
11
11
constructor, except for the fee, which is calculated at $120 per credit
12
12
hour. Include a display() method that displays the course data. Create a
13
13
subclass named "LabCourse" that adds $50 to the course fee. Override the
14
- parent class display() method to indicatie that the course is a lab course
14
+ parent class display() method to indicate that the course is a lab course
15
15
and to display all the data. Write an application named "UseCourse" that
16
16
prompts the user for course information. If the user enters a class in any
17
17
of the following departments, create a "LabCourse: BIO, CHM, CIS, or PHY."
@@ -25,12 +25,51 @@ public class CollegeCourse
25
25
private String department ;
26
26
private int courseNumber ;
27
27
private int credits ;
28
- private int fee ;
28
+ private double fee ;
29
+
30
+ // Some extras
31
+ private final double COST_PER_CREDIT_HOUR = 120.00 ;
29
32
30
- public CollegeCourse (String d , int cN , int c )
33
+ public CollegeCourse (String d , int cn , int cr )
31
34
{
32
35
department = d .toUpperCase ();
33
- courseNumber = cN ;
34
- credits = c ;
36
+ courseNumber = cn ;
37
+ credits = cr ;
38
+
39
+ calculateFee ();
40
+ }
41
+
42
+ public String getDepartment ()
43
+ {
44
+ return department ;
45
+ }
46
+
47
+ public int getCourseNumber ()
48
+ {
49
+ return courseNumber ;
50
+ }
51
+
52
+ public int getCredits ()
53
+ {
54
+ return credits ;
55
+ }
56
+
57
+ public double getFee ()
58
+ {
59
+ return fee ;
60
+ }
61
+
62
+ private void calculateFee ()
63
+ {
64
+ fee = COST_PER_CREDIT_HOUR * credits ;
65
+ }
66
+
67
+ public void display ()
68
+ {
69
+ System .out .println ("\n ==== Course ====" );
70
+ System .out .println ("Department: " + department );
71
+ System .out .println ("Course Num: " + courseNumber );
72
+ System .out .println ("Credit Hrs: " + credits );
73
+ System .out .println ("Course Fee: " + fee );
35
74
}
36
75
}
0 commit comments