CSCI-1320 Lab: Arrays and Methods

Instructor: Todd Dole

Purpose Statement

This assignment gives practice passing arrays to methods.

Instructions

Create a class called ArrayOperations, with the following method:

  1. 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.
  2. 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.15999999999
                
    Submit your working .java file through Canvas.