Working with classes (all written below is a single exercise):
Define a class Date that contains integer variables for the day, month, and year.
1.1. Create methods for the class: set, get, default constructor, constructor with arguments.
1.2. Create a method that calculates the number of days between two dates (objects) passed to it.
1.3. Create a dateUpdate method that calculates the next day (assuming there are 30 days in each month)
Define a class Time that contains integer variables for hours and minutes. The class Time inherits the Date members.
2.1. Create methods for the class: set, get, default constructor, constructor with arguments.
2.2. Create a timeUpdate method that calculates time in one minute.
2.3. Create a dateAndTime method that calculates the time in one minute with the date in mind (if at 23:59, one minute will be 00:00 the next day; if the same time is December 31, one minute will be the New Year ).
Write a program implementation demonstrating all methods in both classes.
Comments on the written program should be added to the code.
DescriptionIn this final assignment, the students will demonstrate their ability to apply two ma
Path finding involves finding a path from A to B. Typically we want the path to have certain properties,such as being the shortest or to avoid going t
Develop a program to emulate a purchase transaction at a retail store. Thisprogram will have two classes, a LineItem class and a Transaction class. Th
1 Project 1 Introduction - the SeaPort Project series For this set of projects for the course, we wish to simulate some of the aspects of a number of
1 Project 2 Introduction - the SeaPort Project series For this set of projects for the course, we wish to simulate some of the aspects of a number of