vote up 0 vote down star

Requirements:

  • Calculate the number of months between two dates: receiveDate and dueDate.
  • Both optimistic and pessimistic calculations are needed

Assumptions:

  • dueDate will always be the last day of the month.

I've already figured out the pessimistic calculation (meaning a single day overdue counts as a whole month:

if(receiveDate > dueDate)
    receiveDate.Month - dueDate.Month + (receiveDate.Year - dueDate.Year) * 12;

Doing a search on the internet turned up several similar examples to confirm this.

Now my instincts tell me the optimistic calculation will just be the same minus one month but for some reason it just doesn't feel right. Am I on the right track or am I missing something?

flag

63% accept rate
1  
Don't understand the 'optimistic/pessimistic' thing. Is the number of months between two dates defined as 'the number of months which have one or more days between the two dates, inclusive'? In which case wouldn't there be just one correct answer. – mackenir Apr 20 at 15:45
It really comes down to how you view partial months. In one case partial months are ignored in the other they are counted like a whole month. – Kenneth Cochran Apr 20 at 16:12

2 Answers

vote up 1 vote down check

You're right; if you're looking for the number of complete months between the two dates, subtracting 1 (assuming the receiveDate doesn't fall on the last day of the month, in which case you will have a remainder of 0 days either way) will get you your answer.

link|flag
vote up 0 vote down

If you don't need to keep days of month in your calculus I think it's the way to go.

link|flag

Your Answer

Get an OpenID
or

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