You can put this solution on YOUR website! Find the largest possible values for a set of three consecutive even integers whose sum is less than 105
-----
1st: 2x-2
2nd: 2x
3rd: 2x+2
----
Inequality:
sum <= 105
6x <= 105
x <=17
-----
1st: 2*17-2 = 32
2nd: 34
3rd: 36
---
Sum = 102
==============
Cheers,
Stan H.