Lập trình Java: Nhập 1 dãy số bất kì. In chẵn (lẻ) trên 2 dòng khác nhau Phần mềm: NetBean 8.2 CODE: Select All package cau6;import java.util.InputMismatchException;import java.util.Scanner;public class Cau6 { public static void main(String[] args)throws Exception { Scanner nhap=new Scanner(System.in); int n=0; try{ System.out.println("nhap so phan tu mang: "); n=nhap.nextInt(); }catch(InputMismatchException e) { System.out.println("sai kieu"); } double[] d=new double[n]; for(int i=0;i<n;i++) { System.out.println("Nhap Phan tu thu "+i); d[i]=nhap.nextDouble(); } //xuat mang: for(int i=0;i<d.length;i++) { System.out.println("Phan tu thu "+i+" la :"+d[i]); } System.out.println("Các phần tử chẵn trong dãy"); for(int i=0;i<d.length;i++) { if(d[i]%2==0) { System.out.print(d[i]+" ,"); } } System.out.println(); System.out.println("Các phần tử lẻ trong dãy"); for(int i=0;i<d.length;i++) { if(d[i]%2!=0) { System.out.print(d[i]+" ,"); } } System.out.println(); }}