Instructor: Todd Dole
This assignment gives practice passing arrays to methods.
public static void squareArrayElements(double[] array)Given an array of doubles, this method will square the value at each position in the array, and replace te original value with the new, squared value.
You can copy the following main method into your code to test this:
public static void main(String [] args) { double[] myArray = {5.0, 10.2, 84.6}; squareArrayElements(myArray); for (int i = 0; i < myArray.length; i++) { System.out.println(myArray[i]); } }
Sample output:
25.0 104.039999999999 7157.15999999999Submit your working .java file through Canvas.