Hey, I just started programming this September and I have an assignment in which I am supposed to create a hangman game. This is my first post on this forum so forgive me for any "noob" mistakes Now I'm still learning Java so this will be a basic program running in the console window (no GUI) using strings loops, arrays, etc but hopefully nothing too complicated. I've developed somewhat of an algorithm for the program, but it's really simple so far.
Title screen
main menu (play, instructions, quit)
if they choose to select play there is a choice of difficulty (easy, med, hard)
depending on what difficulty they choose there will be different words
Now I've got all that simple stuff out of the way and I've gotten up to the part where it displays the blanks such as _ _ _ _ _ and now what I'm trying to do is figure out how to get input from the user and use it to fill in the blanks, and give them 5 "lives". What kind of process do I go through to make this happen? I'm not asking for any specific code but I might need some explanations on how I can piece everything together.
Thanks in advance!!!
Title screen
main menu (play, instructions, quit)
if they choose to select play there is a choice of difficulty (easy, med, hard)
depending on what difficulty they choose there will be different words
Now I've got all that simple stuff out of the way and I've gotten up to the part where it displays the blanks such as _ _ _ _ _ and now what I'm trying to do is figure out how to get input from the user and use it to fill in the blanks, and give them 5 "lives". What kind of process do I go through to make this happen? I'm not asking for any specific code but I might need some explanations on how I can piece everything together.
Thanks in advance!!!
Comment