Rev 55 | Blame | Last modification | View Log | RSS feed
// Written by Ira Snyder// Project #5// Due Date: 12-02-2004import java.io.*;class Driver {public static void main ( String [] args ) throws Exception {Test test = new Test();test.test1(); //run the 512 random testSystem.out.println();test.test2(); //run the 1024 random testSystem.out.println();test.test3(); //run the 2048 random testSystem.out.println();test.test4(); //run the 4096 random testSystem.out.println();test.test5(); //run the 1024 ascending testSystem.out.println();test.test6(); //run the 1024 descending testSystem.out.println();test.test7(); //run the 1024 value 1.0 test}}