Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

Write a simple trivia quiz game. Start by creating a Trivia class that contains

ID: 3544346 • Letter: W

Question

Write a simple trivia quiz game. Start by creating a Trivia class      that contains information about a single trivia question. The class should      contain a string to the question, a string for the answer to the question,      and an integer representing the dollar amount the question is worth      (harder questions should be worth more). Add appropriate constructor and      accessor functions. In your main function create either an array or a      vector of type Trivia and hard-code at least five trivia questions of your      choice. Your program should then ask each question to the player, input      the player

Explanation / Answer

class Trivia
{
Trivia(string q, string a, int d)
{
question = q;
answer = a;
amount = d;
}
string question()
{
return question;
}
string answer()
{
return answer;
}
int amount()
{
return amount;
}

private:
string question;
stirng answer;
int amount;
};

Hire Me For All Your Tutoring Needs
Integrity-first tutoring: clear explanations, guidance, and feedback.
Drop an Email at
drjack9650@gmail.com
Chat Now And Get Quote