//@Author Damien Bell
#include <iostream>
#include <vector>

using namespace std;

int main(){
   
    vector<int> vInt;
    int x;
    int y;
    
    cout << "How many people are playing the game? ";
    cin >> x;
    
    for (int i=0; i<x; i++){
        cout <<"\nEnter the score for player " << i << ":  ";
        cin >>y;
        vInt.push_back(y);
    }
    
    for (int i=0; i<vInt.size(); i++){
        cout <<vInt[i] << endl;
    }
    
    //Make an array of 10 numbers, then put them in reverse order into a vector, using a for loop.
    
    
    //for (int i=0; i<10; i++){
  //        vInt.push_back(i);
  //  }
    
//    for (int i=0; i < vInt.size(); i++){
//        cout << vInt[i] <<endl;
//    }
    
    
     
 return 0;
}
