document.write( "Question 1062335: Find the largest three consecutive even numbers that sum to less than 1000 \n" ); document.write( "
Algebra.Com's Answer #677215 by Alan3354(69443) You can put this solution on YOUR website! Find the largest three consecutive even numbers that sum to less than 1000 \n" ); document.write( "-------- \n" ); document.write( "1000/3 =~ 333 \n" ); document.write( "----- \n" ); document.write( "--> 330 + 332 + 334 = 996 \n" ); document.write( "============= \n" ); document.write( "The hard way: \n" ); document.write( "n-2 + n + n+2 < 1000 \n" ); document.write( "3n < 1000 \n" ); document.write( "n < 333.333... \n" ); document.write( "--> same answer \n" ); document.write( " |