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.