This post is about the step by step algorithm or we can also call it as pseudo code that we are going to implement to design the game... •Ask for number of attempts •Ask for minimum word length • Open the word list file & select a random word •Create a set of remaining letters and initialize it to contain the 26 ASCII lowercase character •While there are attempts remaining OR there are unguessed letters in the word remaining Print the word with the unguessed letters censored •Ask for the next letter and make it lowercase If the "letter" has multiple characters Notify the player that the "letter" has multiple characters Else if the letter is not an ASCII lowercase character Notify the player that the letter is not an ASCII lowercase character Else if the letter is not in the remaining letter set (i.e. has been guessed before) Notify the player that the letter has been guessed before Else If letter is in the word Notify the player that the letter is in the...