Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Java Java Objects Creating the MVP Current Progress

Why prompter.displayProgress(); was written twice in the Hangman.java??

I don't understand why prompter.displayProgress(); had to be written twice in the Hangman.java

The first one displays the initial progress, it should be ------ only because no guess was made. After the user makes a character guess, the second purpose is executed to display the updated progress (if the letter is found, it will show up something like h-----

This is my understanding of it so far if this helps

1 Answer

We ask it to run twice because we want to see the progress made on each guess.

The first prompter.displayProgress(); should be blank since no guesses have been made...

"_ _ _ _ _"

then the code asks for a guessed letter...

"Enter a letter: "

I entered the letter 'E'.

the prompter.displayProgress(); runs again so we can see our progress after our guess...

"_ E _ _ _"

*Remeber Craig said everything he is doing is for the purpose of the tutorial. More than likely there is an efficient way of executing this same program.

Good luck!