Advertisement
KOOLMEN99

rand

May 23rd, 2020
1,886
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.15 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int a = 1;
  6. cin >> a;
  7. while (a<=12)
  8. {
  9.     cout << 1 + rand() %24 << endl;
  10.     a+=1;
  11. }
  12.     return 0;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement