
please wait
|
|
LAX[3].departed
(LAX[1].landed + LAX[2].landed + LAX[3].landed)
(and other related summations) to count from 0 instead of 1.int minLandedYear = LAX[1].landed;
You probably want that to be int minLandedYear = LAX[0].landed;
, and likewise for your other initializations.