Is there something similar to the get() method for arrayList that I can use for arrays? I am trying to take the first value from array1, add it to the first value form array 2 and add that to the first value form array three, then div by three to find the average. I once I have that I repeat for the second and so on, these are then placed in a new array.
String[] Array1=
{
new String("Adam "),new String("Smith "),new String("Jones "),new String("Becky "),new String("Taylor")
};
Integer[] Array2=
{
new Integer(90),new Integer(89),new Integer(86),new Integer(76),new Integer(95)
};
Integer[] Array3=
{
new Integer(92),new Integer(79),new Integer(85),new Integer(90),new Integer(87)
};
Integer[] Array4=
{
new Integer(93),new Integer(80),new Integer(90),new Integer(87),new Integer(92)
};
Integer[] Array5=
{
new Integer(90),new Integer(77),new Integer(86),new Integer(92),new Integer(89)
};
you can just access it by index: