main.cpp 301 B

1234567891011
  1. #include <iostream>
  2. #include <stdlib.h>
  3. #include <time.h>
  4. int main (){
  5. fprintf (stdout,"Qwixx initiated!");
  6. srand(time(NULL));
  7. // print 10 random numbers - however rand in clib is pseudo random
  8. for (int i = 0; i<1000; i++) {
  9. std::cout << (rand() % 6) + 1 << std::endl;
  10. }
  11. }