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