// File: randDemo.cpp // Demonstrate random number seeding and generation #include #include // Need to include the following to use the system clock for seeding #include #include void main() {int seed,numRandoms; cout << "Enter the random seed >"; cout.flush(); cin >> seed; srand(seed); cout << "How many random numbers? >"; cin >> numRandoms; for (int count=0;count