Dice game A game rolls a die 10 times and counts how many times the number 5 or 6 shows up. If there are - a total of seven or more times, the win is 2 dollars. - a total of four or more times but less than seven, the win is 1 dollars. . a total of three or less, the win is 0 dollars. Write a function called diceGame that has an input row array of 10 integers representing the ten rolls of dice, and calculates the pay out. For example: » tenRollsofDice =randi(6,1,10) >> payout= diceGame( tenRollsofDice ) tenRollsofDice = 6 4 1 4 payout =

COMPREHENSIVE MICROSOFT OFFICE 365 EXCE
1st Edition
ISBN:9780357392676
Author:FREUND, Steven
Publisher:FREUND, Steven
Chapter3: Working With Large Worksheets, Charting, And What-if Analysis
Section: Chapter Questions
Problem 2.2EYK
icon
Related questions
Question
Dice game
A game rolls a die 10 times and counts how many times the number 5 or 6 shows up. If there are
- a total of seven or more times, the win is 2 dollars.
. a total of four or more times but less than seven, the win is 1 dollars.
. a total of three or less, the win is 0 dollars.
Write a function called diceGame that has an input row array of 10 integers representing the ten rolls of dice, and calculates the pay out.
For example:
>> tenRollsofDice =randi(6,1,10)
>> payout= diceGame( tenRollsofDice)
tenRollsofDice =
6
1 6 4 1 2
4
6
payout =
1
Function e
H Save
C Reset
MATLAB Documentation
1 function payout= diceGame( rolls )
2
3
% Your code goes here %
4
5 end
Transcribed Image Text:Dice game A game rolls a die 10 times and counts how many times the number 5 or 6 shows up. If there are - a total of seven or more times, the win is 2 dollars. . a total of four or more times but less than seven, the win is 1 dollars. . a total of three or less, the win is 0 dollars. Write a function called diceGame that has an input row array of 10 integers representing the ten rolls of dice, and calculates the pay out. For example: >> tenRollsofDice =randi(6,1,10) >> payout= diceGame( tenRollsofDice) tenRollsofDice = 6 1 6 4 1 2 4 6 payout = 1 Function e H Save C Reset MATLAB Documentation 1 function payout= diceGame( rolls ) 2 3 % Your code goes here % 4 5 end
Code to call your function e
C Reset
1 tenRollsofDice = randi(6,1,10)
2 payout = diceGame( tenRollsofDice )
Run Function
Transcribed Image Text:Code to call your function e C Reset 1 tenRollsofDice = randi(6,1,10) 2 payout = diceGame( tenRollsofDice ) Run Function
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
Array
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
COMPREHENSIVE MICROSOFT OFFICE 365 EXCE
COMPREHENSIVE MICROSOFT OFFICE 365 EXCE
Computer Science
ISBN:
9780357392676
Author:
FREUND, Steven
Publisher:
CENGAGE L
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr