Michal_Pilarski

zad2 pseudolosowosc

Apr 1st, 2020
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.21 KB | None | 0 0
  1. #include <iostream>
  2. #include <cstdlib>
  3. #include <ctime>
  4.  
  5. using namespace std;
  6.  
  7. int main()
  8. {
  9.     srand(time(NULL));
  10.     for(int i=1; i<=5; i++)
  11.     {
  12.     cout << rand()%11+30 <<" ";
  13.     }
  14.     return 0;
  15. }
Add Comment
Please, Sign In to add comment