Advertisement
MeehoweCK

Untitled

Mar 15th, 2021
704
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.29 KB | None | 0 0
  1. #include <iostream>
  2. #include <cstdlib>      // rand, srand
  3. #include <ctime>        // time
  4.  
  5. using namespace std;
  6.  
  7. int main()
  8. {
  9.     srand(time(nullptr));        // ustawienie początku losowania
  10.     int losowana_liczba = 1 + rand() % 49;
  11.     cout << losowana_liczba << endl;
  12.     return 0;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement