Question on using a while loop?
이전 댓글 표시
I have attached my script. I need to Add in code to keep track of the user’s total amount of money (balance), and Display the current balance to the user during each round of play. And At the end of each round, the user should be asked if he/she wants to play again. The games should only continue as long as the user wants to play again and the user still has money left. Im confused on how to keep track of the total balance throughout the game and getting the game to continue on. Would I use a menu statement inside a while loop?
채택된 답변
추가 답변 (1개)
Ken Atwell
2015년 10월 24일
To add the bet from the total, use:
Bank = Bank + Bet;
Subtraction will be similar, using "-" of course.
To get your program to loop, you could pop up a menu asking if they want to play again. Your while statement would look something like:
while Bank > 0 && play_again
...
end
Where "play_again" is a variable you create to capture the result of the next menu.
댓글 수: 3
Tyler Silva
2015년 10월 24일
Ken Atwell
2015년 10월 24일
Any code that need to run again and again needs to be inside the while loop.
Tyler Silva
2015년 10월 24일
편집: Tyler Silva
2015년 10월 24일
카테고리
도움말 센터 및 File Exchange에서 Just for fun에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!