Question
A. Set the day.
B. Print the day.
C. Return the day.
D. Return the next day.
E. Return the previous day.
F. Calculate and return the day by adding certain days to the current day. For example, if the current day is Monday and we add four days, the day to be returned is Friday. Similarly, if today is Tuesday and we add 13 days, the day to be returned is Monday.
G. Add the appropriate constructors.
H. Write the definitions of the methods to implement the operations for the class Day, as defined in A through G.
I. Write a program to test various operations on the class Day.
Solution Preview
This material may consist of step-by-step explanations on how to solve a problem or examples of proper writing, including the use of citations, references, bibliographies, and formatting. This material is made available for the sole purpose of studying and learning - misuse is strictly forbidden.
public class ProgramDriver {/**
* @param args the command line arguments
*/
public static void main(String[] args) {
System.out.println("create a new day");
Day d = new Day();
System.out.println("set to Sunday");
d.setDay("Sunday");
System.out.print("Print :" );
d.print();
System.out.print("Previous day: ");
d.previousDay().print();
System.out.print("Next day: ");
d.nextDay().print();
System.out.print("next 16 day from " + d.getDay() + " is : ");
d.addedDay(16).print();
}
}...