I need help making this program setup in a way my professor wants it. I did the program and it works fine I have to add the percentage correct that I will finish after I try to set it up correctly. the files are attached below. biggest issue is understanding how to setup it up.
eagles39 0 Newbie Poster
#include <iostream>
#include <cstdlib>
#include <ctime>
using namespace std;
void doOneSet()
{
int i, term_1, term_2, answer, problems, z,x;
cout << "How many problems do you want: ";
cin >> problems;
cout << "PROBLEM SET #1" << endl;
cout << "-----------------------------------" << endl;
cout << "What is the maximum number of this set? ";
cin>> x;
for(i=0; i < problems; i++)
{
term_1 = rand() % x;
term_2 = rand() % x;
z = term_1 + term_2;
cout << term_1 << " + " << term_2 << " = ";
cin >> answer;
if(z == answer)
{
cout << "correct" << endl;
}
else
{
cout << "incorrect" << endl;
}
}
cout << "PROBLEM SET #2 " << endl;
cout << "-----------------------------------" << endl;
cout << "What is the maximum number of this set? ";
cin>> x;
for(i=0; i < problems; i++)
{
term_1 = rand() % x;
term_2 = rand() % x;
z = term_1 - term_2;
cout << term_1 << " - " << term_2 << " = ";
cin >> answer;
if(z == answer)
{
cout << "correct" << endl;
}
else
{
cout << "incorrect" << endl;
}
}
cout << "PROBLEM SET #3 " << endl;
cout << "-----------------------------------" << endl;
cout << "What is the maximum number of this set? ";
cin>> x;
for(i=0; i < problems; i++)
{
term_1 = rand() % x;
term_2 = rand() % x;
z = term_1 * term_2;
cout << term_1 << " x " << term_2 << " = ";
cin >> answer;
if(z == answer)
{
cout << "correct" << endl;
}
else
{
cout << "incorrect" << endl;
}
}
}
int main()
{
srand(time(0));
doOneSet();
}
This attachment is potentially unsafe to open. It may be an executable that is capable of making changes to your file system, or it may require specific software to open. Use caution and only open this attachment if you are comfortable working with pdf files.
- 1 Contributor
- 0 Replies
- 74 Views
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.