Answer:
#include <iostream>
#include <cstdlib>
#include <ctime>
using namespace std;
int main() {
int seedVal = time(0);
int max;
cout << "Enter the maximum value: ";
cin >> max;
srand(seedVal);
int total = 0;
for (int i = 0; i < 4; i++) {
int randomNumber = rand() % max;
cout << randomNumber << endl;
total += randomNumber;
}
cout << "Average: " << (double)total / 4 << endl;
return 0;
}
Step-by-step explanation:
time(0) is used to seed the random number generator with the current time. The rand() function is used to generate the random numbers, and the % operator is used to ensure that the numbers are less than max. The generated numbers are output, and their average is calculated and output as well.