logo Hurry, Grab up to 30% discount on the entire course
Order Now logo

Ask This Question To Be Solved By Our ExpertsGet A+ Grade Solution Guaranteed

expert
Pragun SangwanTechnical writing
(5/5)

503 Answers

Hire Me
expert
Jayden StewarttHistory
(4/5)

966 Answers

Hire Me
expert
Debra StephensonBusiness
(5/5)

815 Answers

Hire Me
expert
Marilyn HowardMarketing
(5/5)

726 Answers

Hire Me
C++ Programming

To make this function run, you must implement all of the function calls made from the run() function below. Once completed, call this run() function from your main.

INSTRUCTIONS TO CANDIDATES
ANSWER ALL QUESTIONS

The following code is a word scramble game, that reads a word from a file. It will then rearrange the letters in the word and output the scrambled word to the console. The user will then try to guess what the word is. The program will output whether or not the user guessed the word correctly. To make this function run, you must implement all of the function calls made from the run() function below. Once completed, call this run() function from your main.

void run()
{
    srand(time(NULL));
    std::ifstream in;
    std::string word, guess;
    openFile(in, "words.txt");
    do{
        std::string ogWord, guess;
        int tries = 4;
        word = getWordFromFile(in);
        ogWord = word;
        scrambleWord(word);
        showWord(word);
        input(guess);
        if(checkWord(ogWord, guess))
            showSuccess();
        else
            showFail();
    }
    while(playAgain());
    in.close();
}

Once you can get the code working, I want you to modify the script so that the user has five tries to guess the correct answer rather than just one.

To get a char  from a string, use the at() function:

 

str::string s = "hello";

s.at(0) // returns 'h'

s.at(1) // returns 'e'

s.at(2) // returns 'l'

s.at(3) // returns 'l'

s.at(4) // returns 'o'

 

Notice that the first letter is at index 0 not 1.


Here is an example of what the output should look like.

Unscramble this word: ebra
bare
Sorry, that is an incorrect answer. You have 4 more times
brae
Sorry, that is an incorrect answer. You have 3 more times
earb
Sorry, that is an incorrect answer. You have 2 more times
brea
Sorry, that is an incorrect answer. You have 1 more time
arbe
Sorry, that is an incorrect answer. Game over
The correct word is bear
Play again? Y/N
y
Unscramble this word: onil
lion
That is the correct answer!
Play again? Y/N
y
Unscramble this word: terig
giret
Sorry, that is an incorrect answer. You have 4 more times
tiger
That is the correct answer!
Play again? Y/N
y

Related Questions

. The fundamental operations of create, read, update, and delete (CRUD) in either Python or Java

CS 340 Milestone One Guidelines and Rubric  Overview: For this assignment, you will implement the fundamental operations of create, read, update,

. Develop a program to emulate a purchase transaction at a retail store. This  program will have two classes, a LineItem class and a Transaction class

Retail Transaction Programming Project  Project Requirements:  Develop a program to emulate a purchase transaction at a retail store. This

. The following program contains five errors. Identify the errors and fix them

7COM1028   Secure Systems Programming   Referral Coursework: Secure

. Accepts the following from a user: Item Name Item Quantity Item Price Allows the user to create a file to store the sales receipt contents

Create a GUI program that:Accepts the following from a user:Item NameItem QuantityItem PriceAllows the user to create a file to store the sales receip

. The final project will encompass developing a web service using a software stack and implementing an industry-standard interface. Regardless of whether you choose to pursue application development goals as a pure developer or as a software engineer

CS 340 Final Project Guidelines and Rubric  Overview The final project will encompass developing a web service using a software stack and impleme