Azzera filtri
Azzera filtri

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

2 visualizzazioni (ultimi 30 giorni)
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.

Risposta accettata

Star Strider
Star Strider il 27 Set 2015
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.

Più risposte (0)

Categorie

Scopri di più su Introduction to Installation and Licensing in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by