Help with vector input

I'm wanting to create a program where the user can enter 5 of their favourite games, I have a general idea on how I will code this, and I've created this vector
vector<string>favGames(5); Is there anyway I can make it so the user can enter the games.
I've tried doing this cin >> favGames; But I get an error relating to the >>(What are they called btw, I know there called less than and greater than in math)
1
2
cin >> favGames[0];
cin >> favGames[1];

I'll leave the rest to you.


Thanks for the help :D
Topic archived. No new replies allowed.