Question: IN JAVA: Write a program that will find the success ratio for the 24-point game, i.e., number of picks with solutions / number of all
IN JAVA:
Write a program that will find the success ratio for the 24-point game, i.e., number of picks with solutions / number of all possible picks. Write the code that will give all combinations of picking four numbers from the deck.
GIVEN METHOD:
public static boolean findS(int m, int n, int o, int p)
create 52 cards as:
int[] deck = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13,
1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13,
1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13,
1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13};
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
