Advertisement
Guest User

Untitled

a guest
Jun 27th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. #include <iostream>
  2. #include <cmath>
  3. #include <algorithm>
  4. #include <string>
  5. using namespace std;
  6.  
  7. int Random(int min, int max) {
  8. return min + rand() % (max - min);
  9. }
  10.  
  11. int main () {
  12. Random();
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement