Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

image text in transcribed
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 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

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Concepts of Database Management

Authors: Philip J. Pratt, Joseph J. Adamski

7th edition

978-1111825911, 1111825912, 978-1133684374, 1133684378, 978-111182591

Students also viewed these Databases questions

Question

10. Are you a. a leader? b. a follower? _______

Answered: 1 week ago