Skip to content

Commit 8fe5cbb

Browse files
author
Sean Thames
committed
Completed Exercise 8
1 parent 5b4e8bd commit 8fe5cbb

File tree

3 files changed

+124
-5
lines changed

3 files changed

+124
-5
lines changed

m3/ex8/CollegeCourse.java

+44-5
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ fields that hold the department (for example, ENG), the course number (for
1111
constructor, except for the fee, which is calculated at $120 per credit
1212
hour. Include a display() method that displays the course data. Create a
1313
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
1515
and to display all the data. Write an application named "UseCourse" that
1616
prompts the user for course information. If the user enters a class in any
1717
of the following departments, create a "LabCourse: BIO, CHM, CIS, or PHY."
@@ -25,12 +25,51 @@ public class CollegeCourse
2525
private String department;
2626
private int courseNumber;
2727
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;
2932

30-
public CollegeCourse(String d, int cN, int c)
33+
public CollegeCourse(String d, int cn, int cr)
3134
{
3235
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);
3574
}
3675
}

m3/ex8/LabCourse.java

+28
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,31 @@ parent class display() method to indicatie that the course is a lab course
2020
"CollegeCourse.java", "LabCourse.java", and "UseCourse.java."
2121
*/
2222

23+
public class LabCourse extends CollegeCourse
24+
{
25+
private final double LAB_FEE = 50.00;
26+
27+
private double labCourseFee;
28+
29+
public LabCourse(String d, int cn, int cr)
30+
{
31+
super(d, cn, cr);
32+
33+
this.calculateFee();
34+
}
35+
36+
private void calculateFee()
37+
{
38+
labCourseFee = super.getFee() + LAB_FEE;
39+
}
40+
41+
public void display()
42+
{
43+
System.out.println("\n== Lab Course ==");
44+
System.out.println("Department: " + getDepartment());
45+
System.out.println("Course Num: " + getCourseNumber());
46+
System.out.println("Credit Hrs: " + getCredits());
47+
System.out.println("Course Fee: " + labCourseFee);
48+
System.out.println("Lab Fee of $" + LAB_FEE + " applied");
49+
}
50+
}

m3/ex8/UseCourse.java

+52
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,55 @@ parent class display() method to indicatie that the course is a lab course
2020
"CollegeCourse.java", "LabCourse.java", and "UseCourse.java."
2121
*/
2222

23+
import java.util.Scanner;
24+
25+
public class UseCourse
26+
{
27+
private enum labCourses {BIO, CHM, CIS, PHY};
28+
29+
private static boolean isLabCourse(String d)
30+
{
31+
for(labCourses c : labCourses.values())
32+
{
33+
if(c.name().equals(d))
34+
return true;
35+
}
36+
37+
return false;
38+
}
39+
40+
public static void main(String[] args)
41+
{
42+
Scanner input = new Scanner(System.in);
43+
44+
String userInput;
45+
String department;
46+
int courseNumber;
47+
int creditHours;
48+
49+
System.out.print("Enter the Department: ");
50+
userInput = input.nextLine();
51+
department = userInput.toUpperCase().substring(0, 3);
52+
53+
System.out.print("Enter the Course Number: ");
54+
userInput = input.nextLine();
55+
courseNumber = Integer.parseInt(userInput);
56+
57+
System.out.print("Enter the number of credit hours: ");
58+
userInput = input.nextLine();
59+
creditHours = Integer.parseInt(userInput);
60+
61+
if(isLabCourse(department))
62+
{
63+
LabCourse userCourse = new LabCourse(department, courseNumber, creditHours);
64+
userCourse.display();
65+
}
66+
else
67+
{
68+
CollegeCourse userCourse = new CollegeCourse(department, courseNumber, creditHours);
69+
userCourse.display();
70+
}
71+
72+
input.close();
73+
}
74+
}

0 commit comments

Comments
 (0)