Advertisement
pgiovanni

Untitled

Sep 29th, 2019
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. vector<string> populate_route_28(vector<string> route_28) {
  2.  
  3. ifstream address_28 ("address 28.txt");
  4. string address;
  5. for (int i = 0; i < 424; ++i) {
  6. getline(address_28, address);
  7. cout << address << endl;
  8. route_28.push_back(address);
  9. }
  10.  
  11.  
  12. return route_28;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement