Find three consecutive integers in which the sum of the first two is 27 more than the third.

Let smallest number = n
Three consecutive numbers are: n, (n + 1), and (n + 2)
Equation: n + (n + 1) = 27 + (n + 2)
Solve for n: 2n + 1 = 29 + n
2n — n = 29 —1 n =28

Solution: The three numbers are: 28, 29, and 30.
Check: 28+ 29=27+ 30
57 = 57

Computer Science & Information Technology

You might also like to view...

All MIPS R series processor instructions are encoded in a single ________ word format.

A. 4-bit B. 8-bit C. 16-bit D. 32-bit

Computer Science & Information Technology

You can declare several names from a namespace in one declaration:

What will be an ideal response? ``` #include using std::cout, std::cin, std::endl; ```

Computer Science & Information Technology