Loading...

Messages

Proposals

Stuck in your homework and missing deadline? Get urgent help in $10/Page with 24 hours deadline

Get Urgent Writing Help In Your Essays, Assignments, Homeworks, Dissertation, Thesis Or Coursework & Achieve A+ Grades.

Privacy Guaranteed - 100% Plagiarism Free Writing - Free Turnitin Report - Professional And Experienced Writers - 24/7 Online Support

Hangman game source code in c++

03/05/2021 Client: muhammad11 Deadline: 2 Day

Program to Play Hangman C++ Project 4
Subject
Programming

Question Description
For this project, you are going to create the game hangman. Hangman is a simple word game where the player attempts to guess a word before they get "hung" by guessing letters that they think might be in the word. For your version of the game, you’re going to use world capitals instead of words.Project 4: Hangman Overview: For this project you’ll be creating a program to play Hangman. The goal is to get practice reading files and using arrays. Description: For this project, you are going to create the game hangman. Hangman is a simple word game where the player attempts to guess a word before they get "hung" by guessing letters that they think might be in the word. For your version of the game, you’re going to use world capitals instead of words. You will randomly select a line from the file capitals.txt; you will need to have your program count how many lines are in the file and then randomly generate a number to choose which line you’ll use for the game. Your program should tell the user how many letters are in the place name by showing the appropriate number of blanks for each word. Anything that is not a letter, i.e. spaces and commas, should be displayed to the screen in original form (not as a blank). Allow the user to guess letters one at a time (in either upper or lowercase) until they get the full text or guess incorrectly 6 times. Have an interface which looks similar to the one below: _ | | | | | | --------The place is: _ _ _ _ _, _ _ _ _ _ _ _ _ _ _ _ Make a guess: a As the player makes guesses, update the display accordingly. _ | | | | | | --------The place is: _ a _ _ _, A _ _ _ a n _ s _ a n Make a guess: When the player misses, draw a new part of the person hanging from the gallows. Here is an example: _ | | * | -| | | | --------The place is: _ a _ _ _, A _ _ _ a n _ s t a n Make a guess: r r is not in the place name _ | | * | -|-| | | --------The place is: _ a _ _ _, A _ _ _ a n _ s t a n Make a guess: In this case, the right arm would have just been drawn because of the fourth miss. When the player gets a letter correct you should update the blank where that letter occurs to show where it goes (as was the case with s and n in the example above). When the game ends, tell what the word was and whether or not the player won. Here is an example: _ | | * | -|-| / \| | --------The place is: K a b u l, A f g h a n i s t a n You lost! When the game ends, give the user the option of playing again. Helpful Code and Hints: When testing your program, create a new version of capitals.txt that is smaller and easier to work with! • • printTree() – This function should print out hanging tree graphic as shown above. You will need to determine what input parameters are needed to print out the various stages of the completed diagram. You may want to create a driver program that tests out all possible options (there is only 7) readFile() – This function will need to read in the input file. You can pass the filename to the function. Make sure to validate that the file is opened successfully. If the function cannot open the file, it can exit the program. This function should return the number of capitals successfully read from the file. It also needs to update the array of capital data. If you notice, the input file contains blanks and commas. This will mess up the standard way of reading data. Use the following ▪ Option One • string name; instream.clear(); instream.ignore(); getline(instream, name);// allow for a 256 char name ▪ • Option Two • Char name[256]; • • • • instream.clear(); instream.ignore(); instream.getline(name,256); // allow for a 256 char name makeGuess() – This function will validate the user’s guess against the selected capital. It receives the array of capitals and the current string of guess progress. It can return a Boolean value depending on the success of the guess. It should also validate that the user has not already guessed a particular letter. You will want to ignore letter case issues – ‘a’ vs ‘A’. In order to do this, you can use the toLower(name[i]) function. In addition, you may need to use the .length() method on a string to determine how long the string is. Extra Credit Coding (2%) : For extra credit, you can play around with colors: if you #include the windows.h library, you can use the following command to change the color of the font to color number 13 or pink: SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), 13); The following numbers can be used to alter the font color: 0 1 2 3 4 5 6 7 Black Blue Green Aqua Dark Red Purple Muddy Yellow White (normal font color) 8 9 10 11 12 13 14 15 Grey Light Blue Light Green Light Aqua Bright Red Pink Bright Yellow Bright White Another command you may find useful is: system("CLS"); The CLS command clears the console screen.

Homework is Completed By:

Writer Writer Name Amount Client Comments & Rating
Instant Homework Helper

ONLINE

Instant Homework Helper

$36

She helped me in last minute in a very reasonable price. She is a lifesaver, I got A+ grade in my homework, I will surely hire her again for my next assignments, Thumbs Up!

Order & Get This Solution Within 3 Hours in $25/Page

Custom Original Solution And Get A+ Grades

  • 100% Plagiarism Free
  • Proper APA/MLA/Harvard Referencing
  • Delivery in 3 Hours After Placing Order
  • Free Turnitin Report
  • Unlimited Revisions
  • Privacy Guaranteed

Order & Get This Solution Within 6 Hours in $20/Page

Custom Original Solution And Get A+ Grades

  • 100% Plagiarism Free
  • Proper APA/MLA/Harvard Referencing
  • Delivery in 6 Hours After Placing Order
  • Free Turnitin Report
  • Unlimited Revisions
  • Privacy Guaranteed

Order & Get This Solution Within 12 Hours in $15/Page

Custom Original Solution And Get A+ Grades

  • 100% Plagiarism Free
  • Proper APA/MLA/Harvard Referencing
  • Delivery in 12 Hours After Placing Order
  • Free Turnitin Report
  • Unlimited Revisions
  • Privacy Guaranteed

6 writers have sent their proposals to do this homework:

Accounting & Finance Specialist
Coursework Help Online
Professor Smith
Engineering Help
George M.
Engineering Guru
Writer Writer Name Offer Chat
Accounting & Finance Specialist

ONLINE

Accounting & Finance Specialist

You can award me any time as I am ready to start your project curiously. Waiting for your positive response. Thank you!

$47 Chat With Writer
Coursework Help Online

ONLINE

Coursework Help Online

You can award me any time as I am ready to start your project curiously. Waiting for your positive response. Thank you!

$25 Chat With Writer
Professor Smith

ONLINE

Professor Smith

Give me a chance, i will do this with my best efforts

$25 Chat With Writer
Engineering Help

ONLINE

Engineering Help

You can award me any time as I am ready to start your project curiously. Waiting for your positive response. Thank you!

$37 Chat With Writer
George M.

ONLINE

George M.

I will cover all the points which you have mentioned in your project details.

$42 Chat With Writer
Engineering Guru

ONLINE

Engineering Guru

I have read and understood all your initial requirements, and I am very professional in this task.

$25 Chat With Writer

Let our expert academic writers to help you in achieving a+ grades in your homework, assignment, quiz or exam.

Similar Homework Questions

Network Design - 47.2 inches to feet - Nervous system concept map answers - National Practice Problem Exploration - Centre of mass diagram - Laminar flow in a triangular duct - 140 mhz saw filter - Cisco hardening guide pdf - Marketing Plan - Questions about physical properties - Describe the relationship between uv index and latitude - Phet colorado circuit construction kit - PSY/301 Week 2 Individual Development Plan - Clergymen letter to dr king - Major ions in seawater - Blow out bar vancouver - Lesson 6.1 practice b use similar polygons answers - Layers of the rainforest - What are the five steps in an ethical analysis - I want to paraphrase these answers i want it asap - Case based discussion racp - Letter from birmingham jail socrates - Keys to success napoleon hill pdf - Module 2 assignment - Angry birds math project version 1 answers - The cry of the children poem - Acetophenone ir spectrum labeled - Technology - Digi one ia default ip address - Almas tower office directory - You got a ticket in your hand essay - Calculating resistance in parallel - 1.2 7 quiz analyze using rhetoric to sway an audience - Earthquake elko nv - Snotty boy glow up song - Magnetic field between capacitor plates - Conformity in the handmaid's tale - Nursing - Classification of birds ppt - 10 commandments of computer ethics pdf - Bhp graduate program 2021 whirlpool - Fujitsu serverview suite download - Sydney secondary college balmain - Dr mark nesselson pediatrician - Workforce Analysis Paper: Topic Is “Outsourcing” As a culminating experience for this course, each student will be asked to write a 6 page paper, double-spaced, that will be focused on some aspect of employment practices in the 21st century workplace. The - Independent t test spss - Https hbr org video 5236216251001 what makes a leader - Fundamental methods of mathematical economics by alpha c chiang - Major components of holistic marketing - Hourly rounding and fall prevention - 3 good things exercise - Byrne and clore reward need satisfaction theory - What is form 10f india - Plant and animal cells powerpoint 5th grade - Hrm 531 week 1 knowledge check - Cgp gcse french audio - Example of proverbs and explanation - John maxwell 5 levels of leadership summary - Single phase kwh meter connection diagram - Evaluate amazon diversification strategy - Jenna hanchard leaving king 5 - What is the sick role model - Where is walden university located - The lake placid town council has decided - Study and thinking skills in english 101 pdf - Pros and cons of turnitin - Rights and responsibilities lens - How does cultural diversity affect marketing - Which of the following best describes a metal solid - Ibm db2 tutorial - Social work role play scripts - Uq summer research scholarship - Mana 4322 test bank - Microscopic structure of bone - Where does fleance flee to - Discussion about financial managers - Native bees blue mountains - 150 word analysis - Best case selection sort - Unit IV - Discussion Board Question(Due tonight by 10pm EST) - Orphan tsunami of 1700 - Cengage Quiz Due Today by 11:00 pm. - How to increase stock price capsim - Dfdf - Leadership and Management - Griffith health formatting guidelines - Jeppesen chart index number meaning - The ugly american analysis - Discussion 3 - Increase in muscle pliability - What could explain this distribution of mesosaurus fossils - Performance lawn equipment case study - Colinton local history society - Colour of ph paper in coffee - Define constructive conflict - Business requirement document sample - Widgets and gizmos - Fastenal self tapping screws lds brisbane distribution centre - I need help with my homework - Costing methods and techniques