QN011. Write a program to print even numbers between 1 to 100.


1. Objective

To print even 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 wheater even or not we use modulo(%) operator inside the if statement. Where, if statement produces the between result either true or false.

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

2 4 6 8 10 12 14 16 18 20 22 24 26 28 30 32 34 36 38 40 42 44 46 48 50 52 54 56 58 60 62 64 66 68 70 72 74 76 78 80 82 84 86 88 90 92 94 96 98 100

5. Conclusion

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