QN009. Write a program to print odd number between 1 to 100.


1. Objective

To print the odd numbers between 1 to 100.

2. Theory

To achieve the result we use for loop to generate numbers between 1 to 100. For the calculation of number wheather odd or not we use modulo(%) operator inside the if statement. where, if statement produces the boolean result either true or false.

3. Source Code
public class Qn009{
public static void main(String[] args){
for(int i=1;i<=100;i++)
{
if(i%2!=0)
System.out.print(i + "\t");
}
}
}
4. Output

1 3 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 67 69 71 73 75 77 79 81 83 85 87 89 91 93 95 97 99

5. Conclusion

In this way, I would like to conclude that, we can achieve odd number from 1 to 100 using for loop and if statement with some condition.