import java.util.Scanner; public class CardSearchProgram2 { public static void main(String[] args) { boolean found; int[] cards = {2, 4, 9, 11, 12, 43, 45, 65, 76, 13, 84, 92, 95, 104}; int num = 1; while (num > 0) { found = false; System.out.println("Which card are you looking for ?"); num = new Scanner(System.in).nextInt(); for (int i=0; i