Guest User

Untitled

a guest
Feb 19th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. A = std::vector<double>();
  2.  
  3. for (int i = 0; i < 100; i++) {
  4. if (complicatedBoolFunction(i)) {
  5. A.push_back(i);
  6. }
  7. }
Add Comment
Please, Sign In to add comment