sumOdd | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

sumOdd

I m not getting the correct answers . Why ? public class SumOddRange { public static boolean isOdd(int number){ if (number<0){ return false; } else{ if(number % 2 == 0){ return false; } else{ return true; } } } public static int sumOdd(int start, int end){ int sum =0; if (start > end || start < 0 || end < 0) { return -1; } else { if (isOdd(start) && isOdd(end)){ for (int i = start; i <= end; i++) { sum += i; } } } return sum; } }

20th May 2020, 1:35 PM
Satyam Umariya
Satyam Umariya - avatar
2 Answers
+ 1
if (isOdd(start)){ // } && isOdd(end)){ no need for (int i = start; i <= end; i+=2) { sum += i; } sumOdd(1,100)); => Prints 2500 No need of end also should be odd.. And add only odd numbers....
20th May 2020, 3:01 PM
Jayakrishna 🇮🇳
0
Write a method called isOdd with an int parameter and call it number. The method needs to return a boolean. Check that number is > 0, if it is not return false. If number is odd return true, otherwise return false. Write a second method called sumOdd that has 2 int parameters start and end, which represent a range of numbers. The method should use a for loop to sum all odd numbers in that range including the end and return the sum. It should call the method isOdd to check if each number is odd. The parameter end needs to be greater than or equal to start and both start and end parameters have to be greater than 0. If those conditions are not satisfied return -1 from the method to indicate invalid input. Example input/output: * sumOdd(1, 100); → should return 2500 * sumOdd(-1, 100); → should return -1 * sumOdd(100, 100); → should return 0 * sumOdd(13, 13); → should return 13 (This set contains one number, 13, and it is odd) * sumOdd(100, -100); → should return -1 * sumOdd(100, 1000); → should return 247500 TIP: use the remainder operator to check if the number is odd NOTE: Both methods needs to be defined as public static like we have been doing so far in the course. NOTE: Do not add a main method to solution code.
20th May 2020, 1:55 PM
Satyam Umariya
Satyam Umariya - avatar