Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <cstdlib>
- #include <ctime>
- int a=30,b=40;
- using namespace std;
- int main()
- {
- cout << "Liczby: ";
- srand(time(NULL));
- cout << a+rand()%(b-a+1);
- cout << " " <<a+rand()%(b-a+1);
- cout << " " <<a+rand()%(b-a+1);
- cout << " " <<a+rand()%(b-a+1);
- cout << " " <<a+rand()%(b-a+1);
- return 0;
- }
Add Comment
Please, Sign In to add comment