필터 지우기
필터 지우기

I have a question on writing if-statements to determine if entered information is correct or not.

조회 수: 2 (최근 30일)
The problem is number 4 on the attached file. I am stuck on the last part where i have to write a conditional statement to determine if the selected bet is correct or not. Do i have to write an if statement for each scenario? I also attached my code, so you can see what im thinking. Im pretty close to having it all done, just not sure what the conditonal statement needs to include to determine if the bet was right or wrong. Thanks.

채택된 답변

Star Strider
Star Strider 2015년 9월 27일
First, the singular of ‘dice’ is ‘die’.
Second, in your if block, you do not compare your ‘choice’ variable with the outcome of the dice throws. That would seem to be important in determining who wins and how much.
An appropriate if construction might be something like:
if (choice == 1) & (Sum < 7)
... &c. ...
I leave the rest to you.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Introduction to Installation and Licensing에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by