The sum of two integers is positive. If one of them is negative, then other has to be ______. code example
Example 1: Given two integers a and b, which can be positive or negative, find the sum of all the integers between including them too and return it. If the two numbers are equal return a or b.
function GetSum(a, b) {
if(a == b) {
return a
}
else if (a < b) {
return a + GetSum(a+1, b)
} else {
return a + GetSum(a-1, b)
};
}
console.log(GetSum(-1, 2));
Example 2: Given two integers a and b, which can be positive or negative, find the sum of all the integers between including them too and return it. If the two numbers are equal return a or b.
function GetSum(a, b) {
let lower, higher;
let result = 0;
//return either of it if they are equal
if(a == b) {
return a;
} else {
if(a > b) {
higher = a;
lower = b;
} else {
higher = b;
lower = a;
}
for(i = lower; i <= higher; i++) {
result += i;
}
}
return result;
}
console.log(GetSum(3, 9))