Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How to calculate number of Tuesday in one month using JAVA or Android !!

Using calender.set we can set particular month , after that how to calculate number of Mondays, Tuesdays etc days in that month...

code is :

public static void main(String[] args )
    {

    Calendar calendar = Calendar.getInstance();
        int  month = calendar.MAY; 
    int year = 2012;
    int date = 1 ;

        calendar.set(year, month, date);

    int MaxDay = calendar.getActualMaximum(calendar.DAY_OF_MONTH);
    int mon=0;

        for(int i = 1 ; i < MaxDay ; i++)
    {        
        calendar.set(Calendar.DAY_OF_MONTH, i);
            if (calendar.get(Calendar.DAY_OF_WEEK) == calendar.MONDAY ) 
                    mon++;      
    }

    System.out.println("days  : " + MaxDay);    
    System.out.println("MOndays  :" + mon);
}
share|improve this question
1  
What have you tried? – Anders Lindahl May 3 '12 at 9:50
you have the date and if you know if its tues than mod by 7 . – Vincent May 3 '12 at 9:50

1 Answer

up vote 4 down vote accepted

Without writing whole code here is the general idea:

    Calendar c = Calendar.getInstance();
    c.set(Calendar.MONTH, Calendar.MAY); // may is just an example
    c.set(Calendar.YEAR, 2012);
    int th = 0;
    int maxDayInMonth = c.getMaximum(Calendar.MONTH);
    for (int d = 1;  d <= maxDayInMonth;  d++) {
        c.set(Calendar.DAY_OF_MONTH, d);
        int dayOfWeek = c.get(Calendar.DAY_OF_WEEK);
        if (Calendar.THURSDAY == dayOfWeek) {
            th++;
        }
    }

This code should count number of Thursday. I believe you can modify it to count number of all days of week.

Obviously this code is not effective. It iterates over whole month. You can optimize it. Just get day of week of the first day, number of days in month and (I believe) you can write code that calculates number of each day of week without iterating over the whole month.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.