История изменений
Исправление Darth_Revan, (текущая версия) :
/* Whether the i+1 item is one of the first 10 */
if (i < 9)
Так было бы лучше?
Исправление Darth_Revan, :
/* Whether the i+1 item is one of the first 9 */
if (i < 9)
Так было бы лучше?
Исходная версия Darth_Revan, :
/* Whether the i+1 item is less than 10 */
if (i < 9)
Так было бы лучше?