Need help with this assignment! I do not know how to even get started. I must ha
ID: 3635455 • Letter: N
Question
Need help with this assignment! I do not know how to even get started. I must have a .h header file, a .cpp file that is the function definitions of the function prototypes declaired in the header file, and then a .cpp file which in Main.In this programming challenge you will create a simple trivia game for two players.
The program will work like this:
*Starting with player 1, each player gets a turn at answering five trivia questions (There are a total of 10 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.
*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 the winner.
In this program you will design a Question class to hold the data for a trivia question. The question class should have member variable for the following data:
*A trivia question
*Possible answer #1
*Possible answer #2
*Possible answer #3
*Possible answer #4
*The number of the correct answer (1,2,3, or 4)
The Question class should have appropriate constructors(), accessor, and mutator functions.
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.
Explanation / Answer
import java.io.File; import java.io.IOException; import java.util.Scanner; public class TriviaGame { public static void main(String args[]) throws IOException { // Constants final int NUM_QUESTIONS = 10; final int NUM_PLAYERS = 2; // Variables int playerTurn = 1; // The current player int questionNum; // The current question number int playerAnswer; // The player's chosen answer int player1points = 0; // Player 1's points int player2points = 0; // Player 2's points // Create an array of Player objects for player #1 and player #2. Player[] players = new Player[NUM_PLAYERS]; for (int i = 0; iRelated Questions
Hire Me For All Your Tutoring Needs
Integrity-first tutoring: clear explanations, guidance, and feedback.
Drop an Email at
drjack9650@gmail.com
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.