Write a program that prints the calendar for a given year


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 user's 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 user's 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

Request for Solution File

Ask an Expert for Answer!!
Computer Engineering: Write a program that prints the calendar for a given year
Reference No:- TGS02899692

Expected delivery within 24 Hours