Create a new class named CreateArrays. Add a method to it named tryArrays. Create two arrays of integers and initialize them the following two different ways.
Add a main method that calls tryArrays.
public class CreateArrays {
public static void tryArrays(){
int[] countsA;
countsA = new int[4];
int[] countsB = {1,2,3,4};
countsA[0] = 1;
countsA[1] = 2;
countsA[2] = 3;
countsA[3] = 4;
for(int i = 0; i < countsA.length; i++)
{
System.out.println("countsA: " + countsA[i] + " countsB: " + countsB[i]);
}
}
public static void main(String[] args){
CreateArrays.tryArrays();
}
}