Write a java program to display all the even numbers from an array. (Use Command Line arguments)

 Write a java program to display all the even numbers from an array. (Use Command Line arguments)

class arreven{
public static void main(String args[]){
int a[] = {1,2,3,4,5,6,7,8,9,10};
for (int i = 0; i<a.length; i++){
if (a[i]%2 == 0){
System.out.println("Even no. is :"+a[i]);
}
}
}
}
Even no. is :2
Even no. is :4
Even no. is :6
Even no. is :8
Even no. is :10