Write an application that displays all even numbers from 2 to 100 inclusive, and that starts a new line after every multiple of 20 (20, 40,60, and 80).
public class even_no {
public static void main( String args[])
{
int x=2;
for(x=2;x<=100;x+=2)
{
System.out.println(x);
}