Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2020
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. #include <cstdlib>
  2. #include <ctime>
  3. #include <iostream>
  4.  
  5. using namespace std;
  6.  
  7. int main() {
  8. srand((unsigned) time(0));
  9. int randomNumber;
  10. for (int index = 0; index < 6; index++) {
  11. randomNumber = (rand() % 49) + 1;
  12. cout << randomNumber << endl;
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement