Question: WRITE THE PROGRAM IN C++ PLEASE! You need to create a game using strings. First generate a random letter from A to Z, this is

WRITE THE PROGRAM IN C++ PLEASE!
You need to create a game using strings. First generate a random letter from A to Z, this is your key and is hidden from the players. Ask player1 and player 2 to enter two strings of length 10. The player whose strings contains the key alphabet will win. If both the players have key alphabets, then the player for which it occurs earlier in the string will win. Example Run: Key: S (Not visible to user) Player1: ABDXSCJMNK; Player2: CSTUZWKMIJ Player 2 wins. HINT: string s = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"; Generate a random number 'K' in range 0 to 25 inclusive use Use s[k] as your random letter
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
