I wrote this code which is working fine but everytime the output is the same. So nothing random about it. Curious to know why! Assumptions: 33 students First row : 7 students 2nd row : 9 students 3rd row : 9 students 4th row : 8 students
#include <iostream>
#include <vector>
#include <algorithm>
#include <ctime>
using namespace std;
int main() {
vector<int> random;
for (int i = 1; i < 34; i++)
random.push_back(i);
random_shuffle(random.begin(), random.end());
for (int i = 1; i < 8; i++)
cout << random[i] << " " ;
cout << endl;
int i = 7;
int num_seats = 1;
for (int j = 1; j <=3; j++) {
while (num_seats < 10 && i < 33) {
cout << random[i++] << " " ;
num_seats++;
}
cout << endl;
num_seats = 1;
}
}


iotafunction that can save you from filling your vector with consecutive numbers. – chris Jun 21 '12 at 15:02