Question: import java.util.Scanner; public class CourseInformation { public static void main ( String [ ] args ) { Scanner scanner = new Scanner ( System .

import java.util.Scanner;
public class CourseInformation {
public static void main(String[] args){
Scanner scanner = new Scanner(System.in);
String courseNumber, courseTitle;
String offeredNumber, offeredTitle, instructorName, term, classTime;
courseNumber = scanner.nextLine();
courseTitle = scanner.nextLine();
offeredNumber = scanner.nextLine();
offeredTitle = scanner.nextLine();
instructorName = scanner.nextLine();
term = scanner.nextLine();
classTime = scanner.nextLine();
Course course = new Course(courseNumber, courseTitle);
System.out.println(course);
OfferedCourse offeredCourse = new OfferedCourse(offeredNumber, offeredTitle, instructorName, term, classTime);
System.out.println(offeredCourse);
}
} need two more files that work with this programing
 import java.util.Scanner; public class CourseInformation { public static void main(String[] args){

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!