Advertisement
MeehoweCK

Untitled

Jun 9th, 2021
484
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.38 KB | None | 0 0
  1. #include <iostream>
  2. #include <cstdlib>
  3. #include <ctime>
  4.  
  5. using namespace std;
  6.  
  7. int losuj(int a, int b)
  8. {
  9.     srand(time(nullptr));       // ustawienie parametru losowania
  10.     return rand() % (b - a + 1) + a;    // zwrócenie wartości funkcji
  11. }
  12.  
  13. int main()
  14. {
  15.     cout << losuj(100, 3000) << endl;   // wywołanie funkcji i wypisanie do konsoli jej wyniku
  16.     return 0;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement