making a quiz in C++?

sherry_ellis88

New member
I need 5 T or F questions with the option to input the answer and then add the correction to answer if right or wrong.
i just need random questions!
this is what i have so far

#include <iostream>
#include <conio.h>

using namespace std;

int main()
{
int True;
int False;
{
if (userresponse == 'T')
cout << " Cows have 7 stomachs"
 
Back
Top