Vector C++ Tutorial

#include 
#include 
#include 
#include 
using namespace std;
int main(int argc, char** argv)
{
  int num;
  vector myVector;
  while (true) {
    cout << "Enter a test score to add (0 to stop): ";
    cin >> num;
    if (num == 0) {
      break;
    }
    myVector.push_back(num);
  }
  vector::iterator it = find_if(myVector.begin(), myVector.end(),bind2nd(greater_equal(), 100));
  if (it == myVector.end()) {
    cout << "No perfect scores\n";
  } else {
    cout << "Found a \"perfect\" score of " << *it << endl;
  }
  return (0);
}