
write an application that print out the even numbers between the range 100-200 ?

The given code accepts the number from 100 to 200 and determine the even numbers between them.
class EvenNumbers
{
public static void main(String[] args)
{
System.out.println("Even Numbers between 100 and 200");
for(int i=100;i<=200;i++){
if(i%2==0){
System.out.println(i);
}
}
}
}
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.
