Question
Write a Java program that prompts the user to enter the year and first day of the year (enter 1 for Monday, 2 for Tuesday,
Write a Java program that prompts the user to enter the year and first day of the year (enter 1 for Monday, 2 for Tuesday, and so on). The program then displays the calendar table for the year on the console. Format your output similar to the sample below. For example, if the user entered the year 2013, and 2 for Tuesday, January 1, 2013, your program should display the calendar for each month in the year.
Note: For brevity, the sample output below prints only the months of January and December, but your program should print all the months
and without using arrays
Sample input/output Enter a year: 2013 Enter the first day of the year: 2 January 2013 - - - - -- - - - -- - - 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
Step 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