import java.util.Scanner; public class LinearSearchProgram { public static void main(String[] args) { int[] items = {2, 3, 5, 7, 7, 12, 14, 19, 21, 24, 28, 32, 32, 45, 48, 49}; System.out.print("Enter the item that you are searching for: "); int searchItem = new Scanner(System.in).nextInt(); // Assume not found yet boolean found = false; // Check all items in turn and jump out if found for (int i=0; i