Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

C++ Suppose there is a game with two options: A and B. Each of these options adds a different amount o points from a range

C++

image text in transcribedimage text in transcribedimage text in transcribed

Suppose there is a game with two options: A and B. Each of these options adds a different amount o points from a range of numbers. You start with 0 points and your goal is to reach 19 or 20 points. For example, suppose you had the following options: number between 4 through 7. B number between 1 through 8. A sample game might go: Points 0, choose option A(add 4-7). Points 4, choose option B(add 1-8). Points 12, choose option B(add 1-8 Points 16, choose option B(add 1-8) Points 21, you lose. Make a program that asks the user to give the ranges for both options A and B. You may assume that both options A and B have a minimum of adding at least one point. To figure out which moves are the best, simulate 10,000,000 games (this should take about 5 seconds to run with random choices at each turn. Record how often you won/lost the game for each point value and each option picked. If you won the game, each point/option along the whole game should get a +1 and each loss a -1 Thus if the sample game above was the first game played, you should keep the tally: 0 Points: A--1, B 0 1 Points: A 0, B 0 2 Points: A 0, B 0 3 Points: A 0, B 0 4 Points: A 0, B -1 5 Points: A 0, B 0 6 Points: A 0, B 0 7 Points: A 0, B 30 8 Points: A 0, B 0 9 Points: A 0, B 0 10 Points: A 0, BEO 11 Points: A-0, B 30 12 Points: A 0, B -1 13 Points: 0, B 0 14 Points: A 0, BE0 15 Points: A 0, B 0 16 Points: A 0, B -1 17 Points: A 0, B 0 18 Points: 0, B 0

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Computer Aided Database Design

Authors: Antonio Albano, Valeria De Antonellis, A. Di Leva

1st Edition

0444877355, 978-0444877352

More Books

Students also viewed these Databases questions

Question

What is the gain in speed per second for a freely falling object?

Answered: 1 week ago

Question

2. Place a value on the outcomes.

Answered: 1 week ago