akosiraff

Download TriviaProject CPP

Dec 4th, 2014
235
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.43 KB | None | 0 0
  1.  
  2. Download: http://solutionzip.com/downloads/triviaproject-cpp/
  3. Trivia Game
  4. In this programming challenge you will create a simple trivia game for two players. The program will work like this:
  5. Starting with player 1, each player gets a turn answering five trivia questions.(There should be a total of 10 trivia questions) When a question is displayed, four possible answers are also displayed. Only one of the answers is correct, and if the player selects the correct answer he or she earns a point.
  6. After answers have been selected for all of the questions, the program displays the number of points earned by each player and declares the player with the highest number of points as the winner.
  7. In this trivia game you will design a Question class to hold the data for a trivia question.
  8. The question class should have member variables for the following data:
  9. A trivia question
  10. Possible answer #1
  11. Possible answer #2
  12. Possible answer #3
  13. Possible answer #4
  14. The number of the correct answer (1,2,3, or4)
  15. The question class should have appropriate constructor(s), accessor, and mutator functions.
  16. The program should create an array of 10 Question objects, one for each trivia question. Make up your own trivia questions on the subject or subjects of your choice for the objects.
  17. Create a data file to load the datafrom for the trivia answers. I need the cpp file and data file for this one
  18. Download: http://solutionzip.com/downloads/triviaproject-cpp/
Add Comment
Please, Sign In to add comment