fork download
  1. #include <iostream>
  2. #include <cstdlib>
  3.  
  4. int main()
  5. {
  6.  
  7. for (int rando = 0; rando < 15;)
  8. {
  9.  
  10. int idk;
  11. srand(time(NULL));
  12.  
  13. idk = rand()% 219;
  14.  
  15. std::cout << idk << std::endl;
  16.  
  17. rando++;
  18. }
  19.  
  20.  
  21. }
Success #stdin #stdout 0.01s 5268KB
stdin
Standard input is empty
stdout
200
200
200
200
200
200
200
200
200
200
200
200
200
200
200