/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package class_notes; import java.util.Arrays; import java.util.Random; /** * * @author randycires */ public class Class_Notes { /** * @param args the command line arguments */ public static void main(String[] args) { //--------------------------------------------------------- // Working with Arrays //--------------------------------------------------------- System.out.println("---------------------------------------------------------"); System.out.println(" Working with Arrays "); System.out.println("---------------------------------------------------------"); double[]values = new double [10]; //The above line creates an array of type double with length 10. System.out.println("Essentially all this for loop does is print the values of the array values"); for (int i = 0; i