QN010. Write a program to print odd numbers between n1 to n2.


1. Objective

To print odd numbers between first number(n1) to second number(n2).

2. Theory

In this program, we ask for the input from the user to generate a list of numbers. For this we use Java Scanner class to store input data and for loop generate numbers. If statement with condition is applied to get the odd number only.

3. Source Code
import java.util.Scanner;
public class Qn010{
public static void main(String[] args){
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)
System.out.print(i + "\t");
}
}
}
4. Output

Enter first number: 10
Enter second number: 30
11 13 15 17 19 21 23 25 27 29

5. Conclusion

In this way, I would like to conclude that, we can get odd numbers from n1 to n2. According to the user input.