import java.util.*; class Find10 // Linear search of an array (recursive) (timed, no display) { public static void main(String[] args) throws Exception { Random rand = new Random(); boolean b; long time1,time2; Scanner input = new Scanner(System.in); System.out.print("Enter the number of numbers: "); int num = input.nextInt(); System.out.print("Enter the highest number: "); int high = input.nextInt(); Integer[] a = new Integer[num]; for(int i=0; i=a.length) return false; else if(a[pos].equals(n)) return true; else return search(a,n,pos+1); } }