int[] intArray = new int[20];
String[] cars = {"Volvo", "BMW", "Ford", "Mazda"};
// How to use arrays
// Julian
public static void main(String[] args)
{
// Initialize array
int[] arrNum = {25, 23, 15, 20, 24};
// Recorrerlo
for(int a = 0; a < arrNum.length; a++)
{
System.out.println(arrNum[a]);
}
}
new String[] { "A", "B"}
int[][] numbers = { { 2, 5, 6 }, { 10, 76, 52 } };