import java.util.Scanner; public class CardSearchProgram3 { public static void main(String[] args) { boolean found = false; int[] ranks = {2, 4, 5, 7, 9, 11, 12, 3, 6, 10, 13, 7, 9, 3, 8, 12, 13}; int[] suits = {'H','H','H','H','H','H','H','D', 'D', 'D','D','S','S','C','C','C','C'}; System.out.println("What is the card's rank (2-14)?"); int rank = new Scanner(System.in).nextInt(); System.out.println("What is the card's suit (H, D, S, C)?"); char suit = new Scanner(System.in).next().charAt(0); for (int i=0; i