Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. #include <iostream>
  2. #include <vector>
  3. using namespace std;
  4. int main(void){
  5.     vector<int> vt;
  6.     vt.push_back(0);
  7.     vt.push_back(1);
  8.     vt.push_back(2);
  9.     unsigned int i=0;
  10.     while(i<vt.size()){
  11.         cout <<vt.at(i);
  12.         i++;
  13.     }
  14.     return 0;
  15. }