A player can only buy a vowel when his / her earnings are & gt ;= $ 10 , which is the one-time amount paid for each vowel guess , regardless of whether the vowel is found . The player who has the most money after N rounds is the winner ! A few rule specifics : You have a total round earnings and a total game earnings . You always get a choice of spinning the wheel , solving the puzzle , or buying a vowel during your turn , buy you cannot buy a vowel if you have less than $ 10 . You lose your turn by incorrectly guessing a non-vowel letter on a spin , spinning a 0 or 21 , or incorrectly solving the puzzle . If you spin & gt ; 0 or & lt ; 21 , then you get the number spun times (*) the number of non-vowel letters found added to your round total . If you spin a 0 , then you go bankrupt in the round ( lose your round total ), and it ends your turn . If you spin a 21 , then you keep your round total , but it ends your turn . You can buy a vowel for $ 10 , and you only pay the $ 10 vowel purchase once on a guess , independent of how many are found . If you solve the puzzle correctly , then you keep the money earned for that round and add it to your total game earnings . You win the game by having the most game earnings , not round earnings !!! Your program must print out 1 ) the number spun on the wheel , 2 ) the number of letters found for a guess , 3 ) the total round earnings , 4 ) the message with the correctly guessed slots and blank slots , 5 ) if the user guesses the message , then a winner message and the total game earnings for all players , and 6 ) after all rounds are played , a message with the winning player . Program Requirements : Only use C ++ strings , no need for an array ! Hint : use two strings ! Your program must ignore cases in the message . Each function , including main , may not have more than 15 lines of code