i need to create a java program that plays around of gofish with you and i do not know how to get started.
The program needs to give two hands of seven numbers to the player and the computer, the numbers
should be chosen randomly from an array of 52 numbers (four copies of each number 1-13, 11, 12, 13, 1 = Jack, Queen, King, and Ace). Once a value has been chosen in the array it can not be chosen again.
The program then cycles through turns where you ask the computer if it has any numbers you have and the computer gets a random number from its hand and asks you if you have it. If the computer does not have the number you asked for or if you don't have the number the computer asked for then that person is to get one more number from the array (deck) added to their hand.
If you have any pairs the pairs are removed from your hand and you are given a point, you can only get a point from a pair of two numbers so if you have three copies of a number in your hand one needs to remain in your hand while the other two become a point, the person with the most points when the array (deck) has no values wins.
Any suggestions or guidance on how to write this program would be deeply appreciated.