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