/** @author Scott Marshall @author University of Glasgow, MSc IT Project 2001 @author Building an OnLine Course in Computing Fundamentals */ package ukacgla_4inputKMap; import ukacgla_KMap.*; import java.util.*; /** Provides Random numbers for the k map. Random numbers are stored in an array. */ class Ex06_Random extends KMap_Random { public Ex06_Random(int n){ super(n); } }