How can I write a method in Java, that will tell me the day of the week when I type in the date in the format computeDayOfWeek(Month, Date)?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
No need for external libraries.
|
|||
|
|
|
If you are looking in Java. You can use the Joda-Time API to achieve this: Check the documentation here: http://joda-time.sourceforge.net/userguide.html Example:
|
|||
|
|
|
If you need to calculate this yourself instead of using a pre-made library function, have a look at Zeller's congruence. I implemented this last year, and then corrected about 40 solutions from students (first real program for quite some of them) trying to do their own - there are lots of ways to make mistakes here. Make sure you test if for different dates (january, february, other months, normal years, leap years, year 2000 (is leap year) and 1900 (is no leap year)). |
|||
|
|