Class ArrayPrint

java.lang.Object
  |
  +--ArrayPrint

public class ArrayPrint
extends java.lang.Object


Constructor Summary
ArrayPrint()
           
 
Method Summary
static void printArray(double[] x)
          Prints an array of floating-point numbers.
static void printArray(int[] x)
          Prints an array of integers.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ArrayPrint

public ArrayPrint()
Method Detail

printArray

public static void printArray(int[] x)
Prints an array of integers.
Parameters:
x - the array to print.

printArray

public static void printArray(double[] x)
Prints an array of floating-point numbers.
Parameters:
x - the array to print.