Program that evaluates the ranking of multiple poker hands based on community cards.
This program prompts the user for the number of players, each player's hole cards, and the community cards before outputting what type of hand each player has!
This program evaluates the strength of the hands primarily through combinatorics. It creates every possible combination of 5 card hand based on the inputs given before finding the best one and saving it.
It even incorporates tie breakers through the use of an array that stores kickers.
gcc version 6.3.0
Step 1: Download a C ++ compiler such as MinGW Step 2: Run the following commands from the makefile:
make
make run
Step 3: Use the program!