Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

PLEASE LOOK OVER THE WHOLE QUESTION ESPECIALLY THE SAMPLE OUTPUT AND THE SHELL. Edit: When I post from word to chegg, it sometimes messes up

PLEASE LOOK OVER THE WHOLE QUESTION ESPECIALLY THE SAMPLE OUTPUT AND THE SHELL.

Edit: When I post from word to chegg, it sometimes messes up the formating of the sample output, but it should give you a general idea what it looks like.

I have posted this question a few times already, but no one has done it like the instructions ask.

Problem: Write a program that prints the calendar for a given year. The user will be promoted to choose the calendar for the month or the year. If the year is selected, then the calendar for the given year will be displayed. If the month is selected then the user will be prompted to enter the month, then the calendar for the given month will be displayed.

Top down design: Break down the problem into sub problems and state what you will achieve for each of the sub problems First we need to break down into two sub problems.

Get the users input

a. Read the input(year)

Print the calendar

Print the calendar for the year

a. Print the calendar for each month of the year

i. Print the title for each month in the year.

Print the month and the year

Print Sunday Monday Tuesday Wednesday Thursday Friday Saturday.

ii. Print the body for the month

Get the number of the days for each month of the year

Need to know if the year is a leap year or not. A year is a leap year if it is divisible by 400 or if the year is divisible by 4 but not divisible by 100

Get the number for the first day in the month. For example, November 1st was on a Saturday which is the 6th day of the week assuming that Sunday is the zero day of the week. To figure out which day is the first day of the month you need to do the following:

a. Calculate the total number of days since 1800 up to the month of the year that you are trying to print the calendar

Calculate the total number of days since 1800 up to one year prior to the given year. Note that you also need to check if the year is a leap year or not. For example, if the user enters 2014, we need to calculate how many days from 1800 to 2013. Need a for loop and in the for loop you need to check if the year is a leap year.

Add the total days from the beginning of the given year up to the month. For example, if we are trying to print the calendar for the March 2014, then we need to add the total number of days in Jan and Feb to whatever we calculated in i.

Whatever you get from ii add 3 to it (January

1800 was on a Wednesday) iv. Calculate the remainder of iii divided by 7, this result will tell you that first days of month is Sun or Mon or Tue or Wed or Thu or Fri or Sat.

Determine the date for thanksgiving for November.

Now that you know the number of the days in the month and the day for the first day of the month you can print the calendar.

Now you can write a method that accepts the number of the days in the month and the first day of the month, then print the body

1. If the first day of the month is for example on a Saturday which is the 6th day of the week then you need to output 5 blanks .

You start printing from 1 to the last day of the month.

Add appropriate codes in the main method to give the user the option of displaying the calendar for the year or the month. Based on the users option display the result.

A program shell has been provided for you.

Here is a sample output

Here is the sample output:

Enter a valid year after 1800: 2006 Select one of the following options:

To get the month calendar press m or M

To get the calendar for the year enter y or Y

Enter your choice: n

Invalid choice

Do you have another year to print the calendar:yes/no-->yes Enter a valid year after 1800: 2006 Select one of the following options:

To get the month calendar press m or M

To get the calendar for the year enter y or Y

Enter your choice: m

*Enter the month of the year1..12-->90

*Enter the month of the year1..12-->56

*Enter the month of the year1..12-->5

May 2006

----------------------------

Sun Mon Tue Wed Thu Fri Sat

1 2 3 4 5 6

7 8 9 10 11 12 13

14 15 16 17 18 19 20

21 22 23 24 25 26 27

28 29 30 31

Do you have another year to print the calendar:yes/no-->yes Enter a valid year after 1800: 2017 Select one of the following options:

To get the month calendar press m or M

To get the calendar for the year enter y or Y

Enter your choice: y

January 2017

----------------------------

Sun Mon Tue Wed Thu Fri Sat

1 2 3 4 5 6 7

8 9 10 11 12 13 14

15 16 17 18 19 20 21

22 23 24 25 26 27 28

29 30 31

February 2017

----------------------------

Sun Mon Tue Wed Thu Fri Sat

1 2 3 4

5 6 7 8 9 10 11

12 13 14 15 16 17 18

19 20 21 22 23 24 25

26 27 28

March 2017

----------------------------

Sun Mon Tue Wed Thu Fri Sat

1 2 3 4

5 6 7 8 9 10 11

12 13 14 15 16 17 18

19 20 21 22 23 24 25

26 27 28 29 30 31

April 2017

----------------------------

Sun Mon Tue Wed Thu Fri Sat

1

2 3 4 5 6 7 8

9 10 11 12 13 14 15

16 17 18 19 20 21 22

23 24 25 26 27 28 29

30

May 2017

----------------------------

Sun Mon Tue Wed Thu Fri Sat

1 2 3 4 5 6

7 8 9 10 11 12 13

14 15 16 17 18 19 20

21 22 23 24 25 26 27

28 29 30 31

June 2017

----------------------------

Sun Mon Tue Wed Thu Fri Sat

1 2 3

4 5 6 7 8 9 10

11 12 13 14 15 16 17

18 19 20 21 22 23 24

25 26 27 28 29 30

July 2017

----------------------------

Sun Mon Tue Wed Thu Fri Sat

1

2 3 4 5 6 7 8

9 10 11 12 13 14 15

16 17 18 19 20 21 22

23 24 25 26 27 28 29

30 31

August 2017

----------------------------

Sun Mon Tue Wed Thu Fri Sat

1 2 3 4 5

6 7 8 9 10 11 12

13 14 15 16 17 18 19

20 21 22 23 24 25 26

27 28 29 30 31

September 2017

----------------------------

Sun Mon Tue Wed Thu Fri Sat

1 2

3 4 5 6 7 8 9

10 11 12 13 14 15 16

17 18 19 20 21 22 23

24 25 26 27 28 29 30

October 2017

----------------------------

Sun Mon Tue Wed Thu Fri Sat

1 2 3 4 5 6 7

8 9 10 11 12 13 14

15 16 17 18 19 20 21

22 23 24 25 26 27 28

29 30 31

November 2017

----------------------------

Sun Mon Tue Wed Thu Fri Sat

1 2 3 4

5 6 7 8 9 10 11

12 13 14 15 16 17 18

19 20 21 22 23 24 25

26 27 28 29 30

**Thanksgiving day is on the 23th

December 2017

----------------------------

Sun Mon Tue Wed Thu Fri Sat

1 2

3 4 5 6 7 8 9

10 11 12 13 14 15 16

17 18 19 20 21 22 23

24 25 26 27 28 29 30

31

Do you have another year to print the calendar:yes/no-->yes Enter a valid year after 1800: 2018 Select one of the following options:

To get the month calendar press m or M

To get the calendar for the year enter y or Y

Enter your choice: m

*Enter the month of the year1..12-->7

July 2018

----------------------------

Sun Mon Tue Wed Thu Fri Sat

1 2 3 4 5 6 7

8 9 10 11 12 13 14

15 16 17 18 19 20 21

22 23 24 25 26 27 28

29 30 31

Do you have another year to print the calendar:yes/no-->yes Enter a valid year after 1800: 2006 Select one of the following options:

To get the month calendar press m or M

To get the calendar for the year enter y or Y

Enter your choice: m

*Enter the month of the year1..12-->2

February 2006

----------------------------

Sun Mon Tue Wed Thu Fri Sat

1 2 3 4

5 6 7 8 9 10 11

12 13 14 15 16 17 18

19 20 21 22 23 24 25

26 27 28

Do you have another year to print the calendar:yes/no-->yes Enter a valid year after 1800: 1999 Select one of the following options:

To get the month calendar press m or M

To get the calendar for the year enter y or Y

Enter your choice: y

January 1999

----------------------------

Sun Mon Tue Wed Thu Fri Sat

1 2

3 4 5 6 7 8 9

10 11 12 13 14 15 16

17 18 19 20 21 22 23

24 25 26 27 28 29 30

31

February 1999

----------------------------

Sun Mon Tue Wed Thu Fri Sat

1 2 3 4 5 6

7 8 9 10 11 12 13

14 15 16 17 18 19 20

21 22 23 24 25 26 27

28

March 1999

----------------------------

Sun Mon Tue Wed Thu Fri Sat

1 2 3 4 5 6

7 8 9 10 11 12 13

14 15 16 17 18 19 20

21 22 23 24 25 26 27

28 29 30 31

April 1999

----------------------------

Sun Mon Tue Wed Thu Fri Sat

1 2 3

4 5 6 7 8 9 10

11 12 13 14 15 16 17

18 19 20 21 22 23 24

25 26 27 28 29 30

May 1999

----------------------------

Sun Mon Tue Wed Thu Fri Sat

1

2 3 4 5 6 7 8

9 10 11 12 13 14 15

16 17 18 19 20 21 22

23 24 25 26 27 28 29

30 31

June 1999

----------------------------

Sun Mon Tue Wed Thu Fri Sat

1 2 3 4 5

6 7 8 9 10 11 12

13 14 15 16 17 18 19

20 21 22 23 24 25 26

27 28 29 30

July 1999

----------------------------

Sun Mon Tue Wed Thu Fri Sat

1 2 3

4 5 6 7 8 9 10

11 12 13 14 15 16 17

18 19 20 21 22 23 24

25 26 27 28 29 30 31

August 1999

----------------------------

Sun Mon Tue Wed Thu Fri Sat

1 2 3 4 5 6 7

8 9 10 11 12 13 14

15 16 17 18 19 20 21

22 23 24 25 26 27 28

29 30 31

September 1999

----------------------------

Sun Mon Tue Wed Thu Fri Sat

1 2 3 4

5 6 7 8 9 10 11

12 13 14 15 16 17 18

19 20 21 22 23 24 25

26 27 28 29 30

October 1999

----------------------------

Sun Mon Tue Wed Thu Fri Sat

1 2

3 4 5 6 7 8 9

10 11 12 13 14 15 16

17 18 19 20 21 22 23

24 25 26 27 28 29 30

31

November 1999

----------------------------

Sun Mon Tue Wed Thu Fri Sat

1 2 3 4 5 6

7 8 9 10 11 12 13

14 15 16 17 18 19 20

21 22 23 24 25 26 27

28 29 30

**Thanks giving day is on the 25th

December 1999

----------------------------

Sun Mon Tue Wed Thu Fri Sat

1 2 3 4

5 6 7 8 9 10 11

12 13 14 15 16 17 18

19 20 21 22 23 24 25

26 27 28 29 30 31

Do you have another year to print the calendar: yes/no-->yes Enter a valid year after 1800: 2017 Select one of the following options:

To get the month calendar press m or M

To get the calendar for the year enter y or Y

Enter your choice: m

*Enter the month of the year1..12-->11

November 2017

----------------------------

Sun Mon Tue Wed Thu Fri Sat

1 2 3 4

5 6 7 8 9 10 11

12 13 14 15 16 17 18

19 20 21 22 23 24 25

26 27 28 29 30

**Thanks giving day is on the 23th

Do you have another year to print the calendar: yes/no-->no

Good Bye

---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

Here is the Shell to the program. It is incomplete and needs to be filled in. Using the Sample Output fill in the rest. Please do not just create just a regular calender by inputing the year. It needs to follow how the sample output looks like.

import java.util.Scanner; public class PrintCalenderShell { public static void main(String[] args) { Scanner kb = new Scanner(System.in); //prompt the user to enter the year boolean repeat = true; while (repeat)//repeat as long as the user wants to { //your code } } /*this method prints the body of the calender for the given month*/ public static void printMonth(int year, int month) { //call the method printTitle with the values year and month //call the method printMonthBody with the values year and month } /*this method prints the title of the days in each week(sunday Mon Tues Wed Thur Fir Sat)*/ public static void printMonthTitle(int year, int month) { //output the title for each month of the year } /*this method outputs the calender for each month of the year*/ public static void printMonthBody(int year, int month) { //call the method getStartDay to get the start day for each month of the year //call the method print to print the calender for the month and pass the first day of the month as the parameter } /*prints the calendar for the given month*/ public static void print(int startDay, int year, int month) { // call the method getNumberOfdaysInMonth to finde out the number of the days in the month //use a for loop to print spaces up to the start day for each month //use another for loop to print the rest of the days in the calender //if the month is November calculate the thanksgiving day and output } } /*this method calculates the date for thanksgiving, you need to use a switch statment. Thanksgiving is always on fourth Thursday of November. depending on the first day of the month a constant needs to be added to 3 * 7 since we have three full weeks. if the first day of the month is on a Sunday then for that month thanksgiving will be 5 + 3 *7. */ public static int thanks(int startDay) { return 0; } /*you can use this method from you previous HW */ public static String getMonthName(int month) { return ""; } /*this method returns the atrt day of the month*/ public static int getStartDay(int year, int month) { //call the method getTotalNumberOfDays and store it in a variable called start //add 3 to the variable start //return start % 7 return 0; } /*returns the total number of the days up to the given month in the given year */ public static int getTotalNumberOfDays(int year, int month) { return 0; } /*this method return the number of the days in the given month of the given year. take leap year into consideration*/ public static int getNumberOfDaysInMonth(int year, int month) { return 0; } /*returns true if the given year is leap, false otherwise*/ public static boolean isLeapYear(int year) { //refer to the HW description return false; } } 

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

Modern Database Management

Authors: Jeff Hoffer, Ramesh Venkataraman, Heikki Topi

12th edition

133544613, 978-0133544619

More Books

Students also viewed these Databases questions

Question

WHAT IS ACCOUNTING AND FUNCTIONS?

Answered: 1 week ago

Question

Breathing explain?

Answered: 1 week ago

Question

WHAT IS DOUBLE ENTRY ACCOUNTING SYSTEM?

Answered: 1 week ago