Facebook
From Mungo Bongo, 7 Years ago, written in C++.
Embed
Download Paste or View Raw
Hits: 234
  1. #include <iostream>
  2. #include <ctime>
  3.  
  4. using namespace std;
  5.  
  6. int a,b;
  7.  
  8. int main()
  9. {
  10.     srand (time(NULL));
  11.    
  12.     a=rand()%21;        //przedzial <0:20>
  13.     b=rand()%21+100;    // przedzial <100:120>
  14.    
  15.     cout << a << " " << b << endl;
  16.    
  17.     for (int i=a;i<=b;i++)
  18.     {
  19.         cout << i << endl;
  20.     }
  21.     return 0;
  22. }
  23.