Guest User

Untitled

a guest
May 26th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. int area = 0;
  2. std::vector<int> rutor;
  3. for (int i = 0; i < array_size; i++)
  4. {
  5. if(i == 0)
  6. {
  7. area++;
  8. rutor.push_back(i);
  9. if(rutor.empty())
  10. continue;
  11. else
  12. {
  13. int curruta = rutor.size();
  14. rutor.pop_back();
  15. }
  16. }
  17. }
Add Comment
Please, Sign In to add comment