Question
JAVA It is 3 part easy question. The other 2 parts depend on the first part. Need it in 1 hour please experts. Your help
JAVA It is 3 part easy question. The other 2 parts depend on the first part. Need it in 1 hour please experts. Your help will be appreciated
Given the solution from question 1, implement the following additions.
Write a class called PalindromicDates that implements the above method and also maintains the following data members:
int[] dateNumber (stored as 12022021, for example)
String[] date (stored as 12-02-2021, for example)
The method getPalindromicDate will also store the valid dates into the appropriate index of the data member arrays (see above). T
The driver should maintain an infinite loop until the user does not wish to check any more years.
The PalindromicDates object will be updated appropriately throughout the loop.
Write a toString method that prints out all of the dates stored to print the PalindromicDates object after the user is finished inputting years.
3. Duplicate dates will not be allowed to be stored. (from question 2.)
The following date of the form: MM-DD-YYYY would be palindromic if it read the same way backwards: YY-YY-DDMM. For example, the date: 12-02-2021 is palindromic. Write a method getPalindromicDate that takes an integer (a year) as input and then returns a palindromic date. The palindromic date should be stored in a stack based data structure using dynamic memory allocation (LinkedStack). If the year does not give a palindromic date, then the returned stack will be null. Only Gregorian calendar dates are allowed and the stack should maintain the ordering of the dates as: Where MM is the top of the stack. MM and DD must be two digits, so if there is a single digit a zero must precede it. For example, the following date: 03-12-2130. The following palindrome would not be a valid palindromic date: 40-52-2504, because there is not a 40th month of the year, nor a 52nd day in any given month. Write a driver program that will test the getPalindromicDate method by printing out the stack returned with the appropriate formatting to appear palindromic and as a date, given there is such a date for the given yearStep by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started