Age calculation wrong
After checking birthdates on youngsters about to come of age so I'd have a better idea of when it's time to marry them off, I found that their age incremented, not in the month of their birth, but about six months earlier. It appears to me that the age calculation is based on a rounding function (i.e., display 16 when age >= 15.5 and age < 16.5) rather than a floor function (i.e., display 16 when age >= 16 and age < 17.)
After checking birthdates on youngsters about to come of age so I'd have a better idea of when it's time to marry them off, I found that their age incremented, not in the month of their birth, but about six months earlier. It appears to me that the age calculation is based on a rounding function (i.e., display 16 when age >= 15.5 and age < 16.5) rather than a floor function (i.e., display 16 when age >= 16 and age < 17.)
Upvote
0