QN018. Write a program to print sum of odd numbers between n1 to n2.


1. Objective

To print the sum of odd numbers between two given numbers.

2. Theory

In this program, we ask for the user to input two numbers to generate numbers between those numbers and Scanner class to store the given input for loop to generate numbers and if statement to get the odd numbers.

3. Source Code
import java.util.Scanner;
public class Qn018{
public static void main(String[] args){
int sum = 0;
Scanner input = new Scanner(System.in);
System.out.print("Enter first number: ");
int n1 = input.nextInt();
System.out.print("Enter second number: ");
int n2 = input.nextInt();
for(int i=n1;i<=n2;i++)
{
if(i%2!=0)
sum+=i;
}
System.out.println("Sum of odd number between " + n1 + " to " + n2 + " is " + sum);
}
}
4. Output

Enter first number: 35
Enter second number: 55
Sum of odd number between 35 to 55 is 495

5. Conclusion

In this way, I would like to conclude that, we can calculate the sum of odd numbers between any two given numbers using this program.