#include <iostream>
#define RESPONSE_SIZE 40
using namespace std;
int main() {
int responses[RESPONSE_SIZE] = { 1, 2, 6, 4, 8, 5, 9, 7, 8, 10, 1, 6, 3, 8, 6, 10, 3, 8, 2, 7, 6, 5, 7, 6, 8, 6, 7, 5, 6, 6, 5, 6, 7, 5, 6, 4, 8, 6, 8, 10 };
for (int i = 0; i < RESPONSE_SIZE - 1; i++)
cout << responses[i] << ", ";
cout << responses[RESPONSE_SIZE - 1] << endl;
system("pause");
return 0;
}
Comments
Leave a comment