Question: please write this program following the instructions. write this in java 1. Make a Date class that has three fields, year, month, and day. The
1. Make a Date class that has three fields, year, month, and day. The class should have the following methods: a. print the date of the object, such as: 09/03/2019. b. Equals: the method returns true if all three fields have the same values. c. greaterThan: the method returns true if the date of the calling object is later than the parameter; otherwise, returns false. For example, if obj1 has 2019,09 , and 03; obj2 has 2019, 08, 10; then obj1.greaterThan(obj2) returns true. d. Constructor method: take three parameters for year, month, and day e. Access methods for all fields f. Mutator methods for all fields. 2. Write a demo class that asks the user to enter data for two objects of Date. Then the program should print whether they are the same or greater
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
