Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Program #1 Write a class called Date that represents a date consisting of a year, month, and day. A Date object should have the following

image text in transcribed
Program #1 Write a class called Date that represents a date consisting of a year, month, and day. A Date object should have the following methods: public Date(int year, int month, int day) Constructs a new Date object to represent the given date public void addDays(int days Moves this Date object forward in time by the given number of days. public void addWeeks(int weeks Moves this Date object forward in time by the given number of seven-day weeks public int daysTo(Date other) Returns the number of days that this Date must be adjusted to make it equal to the given other Date. public int getDay) Returns the day value of this date: for example, for the date 2006/07/22, returns 22 public int getMonth) Returns the month value of this date; for example, for the date 200607/22, retuns 7 public int getYear Returns the year value of this date: for example, for the date 2006/07/22, returns 2006. public boolean isteapYear Returns true if the year of this date is a leap year. A leap year occurs every four years, except for multiples of 100 that are not multiples of 400. For example, 1956. 1844. 1600, and 2000 are leap years, but 1983, 2002. 1700, and 1900 are not. public String tostring Returns a String representation of this date in year/month/day order, such as 2006/07/22

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

Students also viewed these Databases questions

Question

4. Which require a total redesign and a new way to lead them?

Answered: 1 week ago

Question

Define external validation of cluster.

Answered: 1 week ago

Question

=+2 How does the preparation and support for each type of IE vary?

Answered: 1 week ago