Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/main/java/com/java/calendar/PrintCalendar.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,9 @@
public class PrintCalendar {

private static final Logger LOGGER = LoggerFactory.getLogger(PrintCalendar.class);

//Reference for Odd Days : http://www.indiabix.com/aptitude/calendar/formulas

//Reference for Odd Days : http://www.indiabix.com/aptitude/calendar/formulas
// This is a new line added to existing code
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Added a new line for testing purpose.

static String[] days = {"Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"};

static int[] monthlyDays = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
Expand Down