Advertisement
Guest User

Untitled

a guest
Feb 13th, 2017
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. int main()
  2. {
  3.     //srand(static_cast<unsigned int>(time(NULL)));
  4.     srand(time(NULL));
  5.     std::vector<int> x(20, 0);
  6.  
  7.     for (auto &v : x)
  8.     {
  9.         v = rand() % 3 + 1;
  10.         std::cout << v << " ";
  11.     }
  12.     cout << std::endl;
  13.     for (const auto &v : x)
  14.     {
  15.         std::cout << v << " ";
  16.     }
  17.  
  18.     system("pause");
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement