Borrar filtros
Borrar filtros

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

2 visualizaciones (últimos 30 días)
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.

Respuesta aceptada

Star Strider
Star Strider el 27 de Sept. de 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.

Más respuestas (0)

Categorías

Más información sobre Introduction to Installation and Licensing en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by