Create a c++ quiz program, in this program it has a 10 questions that the user will answer. The program has the following functions:
A. It will show the message (Correct) if the the answer is correct and (Wrong) if the answer is wrong
B. It can compute the total score
C. If the user Failed in the quiz it will ask the user if he wants to retake the quiz. ( 6 is the passing rate)
C1.1If he select Yes he will take the quiz again.
C1.2. If he select No the program will automatically closed.
Extra 10 points: use system(“clear”) to clear the the previous data in the screenx
#include <iostream>
using namespace std;
int foo(string question, string answer) {
cout << question << '\n';
cout << "1: Green\n";
cout << "2: Red\n";
cout << "3: Blue\n";
cout << "4: Non of the above\n";
string choice;
cin >> choice;
if (choice == answer) return 1;
else return 0;
}
int main()
{
int score = 0;
score += foo("What is the color of the tree?", "1");
cout << "Your score: " << score << '\n';
return 0;
}
Comments
Leave a comment