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;
};
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.