Open bakaikin opened 10 years ago
what is this: if((_year.text.intValue % 4 == 0 && _year.text.intValue % 100 != 0)|| _year.text.intValue % 400 == 0){ yearArray[1] = LEAP_YEAR_FEBRUARY;
???
This is condition of leap year. P.S. I take it from http://edunow.su/site/content/algorithms/how_to_identify_a_leap_year
what is this: if((_year.text.intValue % 4 == 0 && _year.text.intValue % 100 != 0)|| _year.text.intValue % 400 == 0){ yearArray[1] = LEAP_YEAR_FEBRUARY;
???