/* CardProgram1.java CIS 160 David Klick 2016-11-01 Creates and shuffles a deck of cards, and then deals two hands of seven cards each. */ public class CardProgram1 { public static void main(String[] args) { String[] cards = new String[52]; String[] suit = { "Spades", "Hearts", "Clubs", "Diamonds" }; String[] rank = { "Ace", "Two", "Three", "Four", "Five", "Six", "Seven", "Eight", "Nine", "Ten", "Jack", "Queen", "King" }; for (int i=0; i