InterviewSolution
Saved Bookmarks
| 1. |
Find three consecutive even number whose sum is 96.The sum of three consecutive integers is 39. Find all three integers |
|
Answer» three consecutive even numbers are x-2,x,x+2sl x-2+x+x+2=96so 3x=96 so x=32so numbers are 30,32,34 three consecutive integers are x-1,x,x+1so x-1+x+x+1=39so 3x=39 so x=13so numbers are 12,13,14 |
|