I am working on the program below. I am trying to implement a static recursive method where indicated that has one parameter for an array of integers, which returns the sum of the elements in the array. I am not sure of the best way to do this. Does anybody have any suggestions? Thanks!
public class SumOfInts
{
public static void main(String[] args)
{
int[] testArray = new int[5];
testArray[0] = 5;
testArray[1] = 8;
testArray[2] = 42;
testArray[3] = 1;
testArray[4] = 19;
System.out.println("The integers in the array are:"
;
for(int i = 0; i < testArray.length; i++)
System.out.println("Value at index " + i + " = "
+ testArray);
int sum = sumOfInts(testArray);
System.out.println(""
;
System.out.println("The sum should be 75"
;
System.out.println("The actual sum returned is " + sum);
}
Static Method here...
}
public class SumOfInts
{
public static void main(String[] args)
{
int[] testArray = new int[5];
testArray[0] = 5;
testArray[1] = 8;
testArray[2] = 42;
testArray[3] = 1;
testArray[4] = 19;
System.out.println("The integers in the array are:"
for(int i = 0; i < testArray.length; i++)
System.out.println("Value at index " + i + " = "
+ testArray);
int sum = sumOfInts(testArray);
System.out.println(""
System.out.println("The sum should be 75"
System.out.println("The actual sum returned is " + sum);
}
Static Method here...
}