Online Time 12/3 Topics Questions / Requests 1. Assignment 10 review 2. Continuation of Card and Deck Example - Poker Hands "Houston! We have a problem!" 3. Assignment 11 brainstorming ---------------------------------- Poker k 7 5 9 k a pair 2 1 1 1 2 = 7 7 3 k k 3 two pair 1 2 2 2 2 = 9 3 7 q 7 7 three of a kind 1 3 1 3 3 = 11 q q q 4 q four of a kind 4 4 4 1 4 = 17 j 2 2 j j full house 3 2 2 3 3 = 13 8 9 10 j q straight flush (all the same suit) straight flush royal flush preprocessor directives #if #else #endif #if defined(__MINGW32__) || defined(_MSC_VER) // testing to see if the macro __MINGW32__ or macro _MSC_VER exists #if defined(__MINGW32__) || defined(_MSC_VER) const string Path = "C:\\temp\\"; const string EraseCommand = "erase "; #else #if defined(__clang__) const string Path = "/tmp/"; #else const string Path = "./"; #endif const string EraseCommand = "rm "; #endif