J.quan
0
Q:

java int array

int[] array = new int[/*size*/];
// Works for double, char, etc.
26
int intArray[];    //declaring array
intArray = new int[20];  // allocating memory to array
//OR
int[] intArray = new int[20]; // combining both statements in one
14
int[] arr = new int[5];	 // integer array of size 5 you can also change data type
10
int[] theNumbers = new int[5];

arr[0] = 4;
arr[1] = 8;
arr[2] = 15;
arr[3] = 16;
arr[4] = 23;
arr[5] = 42;
8
int[] arr = new int[10];	//Can hold 10 elements
11
String[] cars = {"Volvo", "BMW", "Ford", "Mazda"};
cars[0] = "Opel";
System.out.println(cars[0]);
// Now outputs Opel instead of Volvo
7
 int[] intArray = new int[]{ 1,2,3,4,5,6,7,8,9,10 }; 
 // Declaring array literal
0
(file name) file name(s) = new (File name)[/*amount*/]
  
  void setup() {
  	for (int i = 0; i < (file name(s)).length; i++) {
    	 
    }
  }
3

New to Communities?

Join the community