16 lines
404 B
Java
Raw Normal View History

2015-06-15 17:47:35 -07:00
//: com/mindviewinc/util/PrintArray.java
// <20>2015 MindView LLC: see Copyright.txt
// Display an array of double
package com.mindviewinc.util;
public class PrintArray {
public static void printArray(double[] array) {
for(int i = 0; i < array.length; i++) {
System.out.print(array[i]);
if(i != array.length -1)
System.out.print(", ");
}
System.out.println();
}
} ///:~