Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Ask the user how many games she wants to play. Then calculate the percentages of winning and losing. Rename the main function to playGame. Make
Ask the user how many games she wants to play. Then calculate the percentages of winning and losing. Rename the main function to playGame. Make the playGame function return true or false. Inside the main, ask the user to enter the number of games she wants to play then play that many games. Calculate the percentages of winning and losing. int main () {srand(time(0)); how many games do you want to play? Play as many games as the user requested. Calculate the\percentages of winning and losing.} ???? playGame(????)//int main() {//srand(time(0)); leftarrow do not leave this in playGame. Move it to the lop of main. This function plays one craps game. It should return true if win or return false if lose.} Mathematical analysis on the craps game http://mathworld.wolfram.corn/Craps/html The probability of winning is 49.2929 Sample runs [kslott@empress cs111_lec_spr17]$ ./a.out How many games do you want to play?: 108 win % lose % 51.000 49.000 [kslott@empress cslll_lec_spr17]$ ./a.out How many games do you want to play?: 108 win % lose % 43.000 57.000 [kslott@empress cslll_lec_spr17]$ ./a.out How many games do you want to play?: 100 win % lose % 59.000 41.000
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started