*NOTE: I AM NOT ASKING YOU TO DO MY HOMEWORK. I am just stuck.
I am designing a Hangman class right now. Apparently, we need three StringBuilders (a) one to display hyphens: "--------" the length of the word, b) one to display correct letters guessed: "--a--e---", and finally c) another one that is essentially the opposite of b (guessed letters replaced by hyphens and unguessed letters revealed). The purpose of c) is to see if there are any matches during guessing.
My biggest problem is I can't find many practical StringBuilder examples on Google, namely my biggest issue is where can/should I instantiate the three StringBuilders in the Hangman class?
thanks...