219k views
1 vote
A math teacher is trying to create an application that helps students learn addition. To create a practice, the teacher wants the application to generate 2 random numbers between 1 and 99 and display an addition question with the 2 generated numbers. A question may look like:

What is 33 + 97?

Where 33 and 97 are randomly generated. Using the random function we learned in our course, create a program that will generate random numbers to produce 3 math questions. Make sure to use the srand function and the time function to enhance the randomness generation. Your program should also display the corresponding results.

An example output may be:

Questions:

1) What is 33 + 97?

2) What is 12 + 3?

3) What is 28 +72?

1 Answer

0 votes

Final answer:

A simple C++ program can be written to generate 3 random addition questions for students using rand, srand, and time functions.

Step-by-step explanation:

To create a program that generates random addition questions for students, you can use the rand and srand functions in C++ along with the time function to seed the random number generator. Here is a simple C++ example:

#include
#include
#include
using namespace std;

int main() {
// Initialize random seed based on current time
srand(time(0));

// Generate and print 3 questions
for(int i = 1; i <= 3; i++) {
int num1 = rand() % 99 + 1;
int num2 = rand() % 99 + 1;
cout << "Question " << i << "): What is " << num1 << " + " << num2 << "?\\";
cout << "Answer: " << num1 + num2 << "\\\\";
}

return 0;
}

The above code will produce 3 random addition questions using randInt function, and it will display both the questions and their correct answers.

User Otwtm
by
7.4k points