InterviewSolution
Saved Bookmarks
| 1. |
The sum of three consecutive odd numbers is 201. Find the numbers. |
|
Answer» Let three odd consecutive odd numbers be 2x + 1, 2x + 3, 2x + 5Given sum is 2012x + 1 + 2x + 3 + 2x + 5 = 2016x + 9 = 2016x = 201 - 96x = 192x = 192/6x = 32So odd number are 65, 67, 69 |
|