Advertisement
wiktormadera

Zad5/2

Apr 30th, 2020
279
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.32 KB | None | 0 0
  1. #include <iostream>
  2. #include <cstdlib>
  3. #include <ctime>
  4. #include <windows.h>
  5. using namespace std;
  6.  
  7. int main()
  8. {int liczba;
  9.     srand(time(NULL));
  10.     for(;;)
  11.     {
  12.     liczba = rand()%2001-1000;
  13.     cout << liczba <<" ";
  14.     Sleep(99);
  15.     if(liczba<201 && liczba>99)
  16.         return 0;
  17.     }
  18.     return 0;
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement