Question 1062335
Find the largest three consecutive even numbers that sum to less than 1000
--------
1000/3 =~ 333
-----
--> 330 + 332 + 334 = 996
=============
The hard way:
n-2 + n + n+2 < 1000
3n < 1000
n < 333.333...
--> same answer