• + 2 comments

    can you tell me how's data is declaring in this two loops

    • for(int i = 0; i < n; i++){ a[i]=scan.nextInt(); } scan.close(); // Prints each sequential element in array a for (int i = 0; i < a.length; i++) { System.out.println(a[i]);*