Page 113-114: In the multidimensional array section, the statement
at the top of page 114 is incorrect. If you were setting the value for the
first day of the 10th week, it should be the following:
dayValue[9][0] = 14200;
Page 121: In the first example, the expression year & 400 != 0
contains a typo. The correct expression is year % 400 != 0.