For instance in Sept I would need:
1,8,15,22 and 29
Thanks
|
The simplest (naive) solution I can see is: Get a Calendar (Calendar.getInstance()) Set the year, month, date etc (zero out other fields). Then iterate adding one to the date (stop if you're not in the correct month - calendar.get(Calendar.MONTH)) while iterating, if calendar.get(Calendar.DAY_OF_WEEK) == Calendar.TUESDAY then increment the Tuesday counter. |
|||
|
Look up the Doomsday Rule - you should be able to apply that algorithm to your problem. |
|||||
|
|
As per daveb answer I've got:
|
|||
|
|