Project I Simulation: The Tortoise and the Hare In this project, you will re-create the classic race of the tortoise and the hare. You will use random number generation to develop a simulation of the...

1 answer below »
C++ Assignment attached


Project I Simulation: The Tortoise and the Hare In this project, you will re-create the classic race of the tortoise and the hare. You will use random number generation to develop a simulation of the memorable event. Our contenders begin the race at “square 1” of 70 squares. Each square represents a possible position along the race course. The finish line is at square 70. The first contender to reach or pass square 70 is rewarded with a pail of fresh carrots and lettuce. The course weaves its way up the side of a slippery mountain, so occasionally the contenders lose ground. There is a clock that ticks once per second. With each tick of the clock, your program should use function moveTortoise and moveHare to adjust the position of the animals according to the rules in the following figure. These functions should use pointer-based pass-by-reference to modify the position of the tortoise and the hare. Animal Move type Percentage of the time Actual move Tortoise Fast plod 50% 3 squares to the right Slip 20% 6 squares to the left Slow plod 30% 1 square to the right Hare Sleep 20% No move at all Big hop 20% 9 squares to the right Big slip 10% 12 squares to the left Small hop 30% 1 square to the right Small slip 20% 2 squares to the left Use variables to keep track of the positions of the animals (i.e., position numbers are 1-70). Start each animal at position 1 (i.e., the “starting gate”). If an animal slips left before square 1, move the animal back to square 1. Generate the percentages in the preceding table by producing a random integer in the range 1. For the tortoise, perform a “fast plod” when , a “slip” when 6 or a “slow plod” when . Use a similar technique to move the hare. Begin the race by printing BANG!!!!! AND THEY ARE OFF!!!!! For each tick of the clock (i.e., each repetition of a loop), print a 70-position line showing the letter T in the tortoise’s position and the letter H in the hare’s position. Occasionally, the contenders land on the same square. In this case, the tortoise bites the hare and your program should print OUCH!!! beginning at that position. All print positions other than the T, the H or the OUCH!!! (in case of a tie) should be blank. After printing each line, test whether either animal has reached or passed square 70. If so, print the winner and terminate the simulation. If the tortoise wins, print TORTOISE WINS!!!YAY!!! If the hare wins, print Hare wins. Yuch. If both animals win on the same clock tick, you may want to favor the tortoise (the “underdog”), or you may want to print It’s a tie. If neither animal wins, perform the loop again to simulate the next tick of the clock.
Answered 1 days AfterFeb 11, 2021

Answer To: Project I Simulation: The Tortoise and the Hare In this project, you will re-create the classic race...

Neha answered on Feb 12 2021
144 Votes
#include
#include
#include
using namespace std;
//Parameter is the cur
rent position, which will be updated
void moveHare(int*);
void moveTortoise(int*);
void printPos(int, int);
int main(){
    int tPos=0, hPos=0;
    cout << "BANG!!!!" << endl;
    cout << "AND THEY ARE OFF!!!!" << endl;
    srand(time(NULL));
    //Start
    tPos = 1, hPos = 1;
    bool finishGame = false;
    while (!finishGame){
        moveHare(&hPos);
        moveTortoise(&tPos);
        printPos(tPos, hPos);
        if (tPos >= 70 || hPos >= 70){
            finishGame = true;
            if (tPos >= 70 && hPos...
SOLUTION.PDF

Answer To This Question Is Available To Download

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here