I am having trouble with a problem I am working on. The code works until I get to the next step which is a menu asking if the player wants to play the same game again. I can't seem to get it to loop back to the correct spot.
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
|i=1 while i>=1; choice = menu('Do you want to play a game?: ','yes','no') if choice == 2 error('Program will terminate'); elseif choice ==1 games = menu('Select a Game','Dunko','Bouncer','Munchies') end
if games ==1
difficulty = menu('Select desired level of difficulty','Easy','Moderate','Hard')
elseif games ==2
difficulty = menu('Select desired level of difficulty','Easy','Moderate','Hard')
elseif games ==3
difficulty = menu('Select desired level of difficulty','Easy','Moderate','Hard')
end
if games == 1 && difficulty == 1
Dunko = Dunko(1)
elseif games == 1 && difficulty == 2
Dunko = Dunko(2)
elseif games == 1 && difficulty == 3
Dunko = Dunko(3)
elseif games == 2 && difficulty == 1
Bouncer = Bouncer(1)
elseif games == 2 && difficulty == 2
Bouncer = Bouncer(2)
elseif games == 2 && difficulty == 3
Bouncer = Bouncer(3)
elseif games == 3 && difficulty == 1
Munchies = Munchies(1)
elseif games == 3 && difficulty == 2
Munchies = Munchies(2)
elseif games == 3 && difficulty == 3
Munchies = Munchies(3)
end
fprintf = ('Thank you for playing')
replay = menu('Do you wish to repeat the game?','yes','no');
if replay == 1
???????????
end
fprintf = ('Thanks for playing')|
5 Commenti
Adam
il 12 Apr 2016
You probably want a
while true
external loop though. Yours is using i >= 1, but for the code you have shown you never increment i and unless you are going to use i in some way there is no need to have it there for what is effectively an infinite loop until a break condition is met.
Risposte (1)
Adam
il 12 Apr 2016
Modificato: Adam
il 12 Apr 2016
You should just be able to do something like:
while true
difficulty = menu('Select desired level of difficulty','Easy','Moderate','Hard')
if games == 1 && difficulty == 1
...
end
fprintf = ('Thank you for playing')
replay = menu('Do you wish to repeat the game?','yes','no');
if replay == 0
break;
end
end
end
editing your existing code in the obvious places to add the new components. This is assuming you mean you want to play the same game and difficulty on answering yes to the question.
2 Commenti
Adam
il 12 Apr 2016
I edited my answer. The first part should be handled just by moving the difficulty menu call inside this inner while loop as my edited answer shows.
If the user chooses 'No' then this inner while loop exits and you are returned to the outer while loop which will do whatever it does next.
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!