InterviewSolution
Saved Bookmarks
| 1. |
The Sum Of Three Consecutive Integers Is 102. Find The Lowest Of The Three? |
|
Answer» THREE consecutive NUMBERS can be taken as (P - 1), P, (P + 1). So, (P - 1) + P + (P + 1) = 102 The lowest of the three = (P - 1) = 34 - 1 = 33. Three consecutive numbers can be taken as (P - 1), P, (P + 1). So, (P - 1) + P + (P + 1) = 102 3P = 102 => P = 34. The lowest of the three = (P - 1) = 34 - 1 = 33. |
|