Our Services

Get 15% Discount on your First Order

[rank_math_breadcrumb]

HW 7

PLEASE REVIEW THE INFO

Homework 7

Upload your .cpp source code file to Ecampus.

This program is a word/phrase guessing game similar to the classic hangman game.  You should put your own theme (not hangman) onto the game.  All screens should include ASCII art that matches your theme.  The game should include:

1. Introduction screen that has your name and introduces your theme (includes ASCII art)

2. Winning and losing screens (includes ASCII art)

3. Game loop that displays ASCII art that changes with each incorrect guess.

4. Letters guessed or remaining

Steps in the program:

1. Introduction Screen

2. Select a random word and store it in a string variable name SecretPhrase

3. Create GuessPhrase which will be the same size as SecretPhrase, but all periods (e.g. “. . . . . . . .”)

string GuessPhrase = SecretPhrase;
for (int x = 0; x < SecretPhrase.size(); x++)
{
   if (SecretPhrase[x]==’ ‘)
      GuessPhrase[x] = ‘ ‘;
   else
      GuessPhrase[x] = ‘.’;
}

4. Declare an integer named BadGuesses = 0
    Declare a string named Letter
    Declare a string named LettersRemaining and make it equal to the alphabet
    Declare an integer named Location

5. Set up a while loop for steps 6 – 10.  This is the main loop of the program.  The game keeps playing as long as you haven’t lost (when BadGuesses = 6) and you haven’t won (when GuessWord = SecretWord).

{      // This is the opening brace for the game loop

     6. Display ASCII art graphics (do this step last)

     7. Display letters remaining

     8. Output GuessPhrase

     9. Prompt player to enter a letter (their guess) and store it in the variable Letter.  Remove this letter from LettersRemaining.

     10. If Letter is not located in SecretPhrase (note: use Letter.find( ), increment BadGuesses

         Else continue looping and find all occurrences of Letter in GuessWord and replace the periods. 

  // Step 10
  Location = SecretPhrase.find(Letter,0);
    if (Location == -1) // not found
      BadGuesses++;
    else
      while (Location < SecretPhrase.size())
    {
      GuessPhrase.replace(Location,1,Letter);
      Location = SecretPhrase.find(Letter, Location + 1);
     }

}

11. If you exit the loop, then you’ve either won or lost.  Therefore, if BadGuesses == 6, then display the losing screen, else display the winning screen.

Extra Credit Ideas

(a) Outstanding graphics and theme
(b) Ask the user to select a subject for their secret word – e.g. college, movies, etc.
(c) Make your program work with capitalized letters in the secret phrase.

NOTE:

USES OF ANY LIBRARIES(WHICH I HAVE REPEATED MANY TIMES WILL BE GRADED 0) THIS ASSIGNMENT WILL COVER 40 % OF YOUR GRADE) USE OF ANY AI WILL BE DETECTED ) THIS IS THE FINAL WARNING TO ANY WHO USED AI BEFORE .

I ALSO HAVE NOTED DOWN THE EXAMPLE OF HOW ONE OF THE STUDENT DID IT .

Share This Post

Email
WhatsApp
Facebook
Twitter
LinkedIn
Pinterest
Reddit

Order a Similar Paper and get 15% Discount on your First Order

Related Questions

D 8 of 485

Follow the attached instructions to complete this work.   Strategies for Addressing Global Threats You will start by writing a short paper as described in the discussion question. You will be using information from this week’s readings and from your own research to address the information needs expressed in the

D 7 of 485

Follow the attached instructions to complete this work. Leadership Update: Cyber Crime   You will start by writing a short paper as described in the discussion question. You will be using information from this week’s readings and from your own research to address the information needs expressed in the question.

D 8 of 413

 Follow the attach instructions to complete this work. Budgeting for Cybersecurity   You will start by writing a short paper as described in the discussion question. You will be using information from this week’s readings and from your own research to address the information needs expressed in the question. Create an

Computer Science written assignment 3

Written Essay Assignment 3-1: · Identify common risks, threats, and vulnerabilities found in the LAN-to-WAN Domain that require proper security controls for mitigation · Identify network and security policies needed to properly secure the LAN-to-WAN portion of the network infrastructure · Write a 2-3 page APA-formatted essay that identifies network

project 3 of 485

Follow the attach instructions to complete the work. Make sure it aligns with the Rubric Project #3: Presentation for Board of Directors Your Task: Padgett-Beale’s Chief Information Security Officer (CISO) has tasked you to continue supporting the Merger & Acquisition team’s efforts to bring Island Banking Services’ security program into

project 2 of 485

Fellow the attach instructions to complete this work. Make sure it aligns with the Rubric Project #2: Cybersecurity Implementation Plan Your Task: The Acquisition of Island Banking Services has moved from the strategy development phase to the integration phase. In this phase, the M&A team will develop transition and implementation

PROJECT 1 of 485

Fellow the attach instructions to complete this work. Make sure it aligns with the rubric Project #1: Cybersecurity Strategy & Plan of Action Your Task: You have been assigned to support the Padgett-Beale Merger & Acquisition (M&A) team working under the direct supervision of Padgett-Beale’s Chief Information Security Officer (CISO).

proj3-Final

Project 3: Cloud Portfolio Report  Step 1: Review BallotOnline’s Cloud Services Offerings  You’ve now had a lot of experience working on many aspects of the cloud at BallotOnline, and you will take a look at what you’ve done in the past. In this step, you will write up how you

AWS Simple Monthly Calculator

Discussion: AWS Simple Monthly Calculator Contains unread posts Now that you have discussed BallotOnline’s cloud services offerings, you will discuss the AWS Simple Monthly Calculator. You should cover the following areas: · What are some of the general use cases that are covered? · What are the requirements to use

D 5 0F 485

Follow the attach instructions to complete this work. Assessing Maturity for Cybersecurity Program Before you begin read:  Our class focuses on integrating many different aspects of cybersecurity, information security, and information assurance.  Recent developments in the field of cybersecurity have resulted in a number of “maturity models” which can be

Discussion 4 of 413

Follow the attach instructions to complete the work Data Breach Reporting Policy Review the Red Clay Renovations company profile and the weekly readings. Provide specific information about “the company” in your response. Due to changes in state and federal laws, Red Clay leadership decided the CISO will be the sole

discussion 4 of 485

Follow the attach instructions to complete this work. Cultural Differences as Barriers to Success The Merger & Acquisition team hired a team of external consultants to assist with identification of cultural issues which could result in barriers to the successful acquisition of Island Banking Services by Padgett-Beale. The consultants conducted

project 3 of 413

Follow the attached instructions to complete this work Download the attached detailed assignment description for this project. You should also review the rubric shown below for additional information about the requirements for the project and how your work will be graded. Please make sure that you use both the assignment description file

Project 2 of 413

Follow the attach instructions to complete this work. Make sure it aligns with the rubric Project #2: Manager’s Deskbook Company Background & Operating Environment Red Clay Renovations is an internationally recognized, awarding winning firm that specializes in the renovation and rehabilitation of residential buildings and dwellings. The company specializes in

Project 1 of 413

Follow the attach instructions to complete this work. Make sure it aligns with rubric Project #1: Employee Handbook Company Background & Operating Environment Red Clay Renovations is an internationally recognized, awarding winning firm that specializes in the renovation and rehabilitation of residential buildings and dwellings. The company specializes in updating

Discussion and Replies

Please see attachment for instructions     Discussion   In 250 words total, answer the questions below with 4 evidence base scholarly articles. APA format. 1. Discuss some of the common issues with implementation of security policy. 2. What are some possible mitigations to ensure policy can be enforced. Replies

revision x 10

I need someone to follow all of the instructions that is provided for revision that can be done no later than tomorrow, do not request bid if this price is not enough or if you cannot fulfill the requirements this is a time sensitive manner I cannot wait 3-4 days