Computer Science, asked by chowdhurysourav830, 9 months ago

Creating an Array of N Integer Elements​

Answers

Answered by gauthamgirish2004
3

Answer:here  u go

hope it is clear

thank u

Explanation:Here's a simple program, called ArrayDemo (in a .java source file), that creates the array, puts some values in it, and displays the values.

public class ArrayDemo {

   public static void main(String[] args) {

       int[] anArray;         // declare an array of integers

       anArray = new int[10]; // create an array of integers

       // assign a value to each array element and print  

       for (int i = 0; i < anArray.length; i++) {

           anArray[i] = i;

           System.out.print(anArray[i] + " ");

       }

       System.out.println();

   }

}

The output from this program is:

0 1 2 3 4 5 6 7 8 9

Similar questions