Hello everyone,
I would like to ask you for your help. Can somebody help me to solve the following task:
Design a program to display the following School Time Table on screen.
Capture.PNG
Your program should use the following named constants to control the format of the calendar
display:
/* The number of days in the month */
private static final int DAYS_IN_MONTH = 31;
/* The day of the week on which the month starts */
/* ( Monday = 0, Tuesday = 1, and so on) */
private static final int DAY_WEEK_STARTS = 0;
/* The width in pixels of a day on the calendar */
private static final int DAY_WIDTH = 40;
/* The height in pixels of a day on the calendar */
private static final int DAY_HEIGHT = 30;
Thank you in advance!
Best Regards