The driver class named Prob05

I will begin with the driver class named Prob05,

Listing 1. Beginning of the Prob05 class.
import java.util.*; 
 
class Prob05{ 
  public static void main(String[] args){ 
 
    Random generator =  
        new Random(new Date().getTime()); 
    int randomNumber =  
        (byte)generator.nextInt(); 
 
    Object[] objRef =  
        {new Prob05MyClassA(randomNumber)};
File: ak.htm [Next] [Prev]