project0
Class P0Main

java.lang.Object
  |
  +--project0.P0Main

public class P0Main
extends java.lang.Object

CSE143 03wi Project 0: "Does The God of Luck Know You?". Driver class. Your program will be tested with this, but you won't be able to turn in a modified version.


Field Summary
static java.lang.String defaultInitials
          Default value in case an argument is not supplied on the command line.
static int trialsToRun
          Number of individual trials to run.
 
Constructor Summary
P0Main()
           
 
Method Summary
static void main(java.lang.String[] args)
          Driver program for the application; not to be changed! This main should be invoked from the command line, with a single string argument (a string of exactly two uppercase letters); in Bluej, it can be run directly and an argument string typed into the dialog box.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

defaultInitials

public static final java.lang.String defaultInitials
Default value in case an argument is not supplied on the command line.

See Also:
Constant Field Values

trialsToRun

public static final int trialsToRun
Number of individual trials to run. 3 is chosen as being a mystical number.

See Also:
Constant Field Values
Constructor Detail

P0Main

public P0Main()
Method Detail

main

public static void main(java.lang.String[] args)
Driver program for the application; not to be changed! This main should be invoked from the command line, with a single string argument (a string of exactly two uppercase letters); in Bluej, it can be run directly and an argument string typed into the dialog box.