answersLogoWhite

0


Best Answer

Two consecutive numbers with the sum of 103 are 51 and 52.Here's a fun way to figure it out using c++ (can me modified to find any two consecutive numbers adding up to the variable target):

#include

using namespace std;

int main()

{

int target = 103;

int num = 0;

int sum;

while (sum != target)

{

num++;

sum = (num + (num+1));

}

cout << num << "\n" << (num+1);

return 0;

} Or, more simply stated: add one to the target (eg., 103+1=104) and then divide by 2 (104/2=52) This will give the second consecutive number. The first is one less, 51.

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Two consecutive numbers with a sum of 103?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What are the two consecutive numbers with the sum of 142?

There are no two consecutive whole numbers that sum to 142.With two consecutive whole numbers, one is even and the other odd, and their sum will be odd, but 142 is even.Two consecutive even numbers that sum to 142 are 70 and 72.


The sum of two consecutive odd integers is 208 Find the integers?

208/2 = 104 so the two numbers are 103 and 105.


What consecutive numbers have a sum of 2012?

No two consecutive integers have a sum of 2012.


Three consecutive odd integers such that their sum is 309?

The numbers are 101, 103 and 105.


Is the sum of two consecutive numbers always divisible by 2?

No, the sum of two consecutive numbers is always an odd number, and is not divisible by two.


Two consecutive 4 digit numbers have a sum of 9173 what are the 2 numbers?

two consecutive 4- digit numbers have a sum of 9173.what are the numbers?


What are two consecutive numbers whose sum is 126?

There are two consecutive even numbers. The numbers are 62 and 64.


If there is 2 consecutive numbers and the sum is 110 what are the two consecutive numbers?

The numbers are 54 and 56.


What are four consecutive numbers that add up to 35?

There are no four consecutive whole numbers that add up to 35. The sum of two consecutive [whole] numbers is an even number plus an odd number which is an odd number. The sum of two consecutive numbers and the two next consecutive numbers is the sum of two odd numbers which is even, but 35 is odd, so no four consecutive whole numbers cannot add up to 35.


What two consecutive numbers equal 70?

There are no two consecutive numbers that equal 70 because the sum of any two consecutive numbers is an odd number.


Is 2001 the answer of the sum of four consecutive integers?

No. The sum of four consecutive integers is two odd numbers plus two even numbers which is an even number. 2001 is an odd number, therefore it cannot be the sum of four consecutive numbers.


What are the sum of two numbers if the sum of two consecutive even numbers is 26?

The sum of the numbers is 26. The numbers are 12 and 14.