fork download
  1. #include<iostream>
  2. #include <stdio.h>
  3. #include <stdlib.h>
  4. #include<time.h>
  5.  
  6. using namespace std;
  7. int main()
  8. {
  9. int i=0;
  10. srand(time(NULL));
  11. while(i<10)
  12. {
  13. cout<<rand()<<endl;
  14. i++;
  15. }
  16. return 0;
  17. }
Success #stdin #stdout 0.02s 2724KB
stdin
Standard input is empty
stdout
1093117050
1410915817
248031380
907771879
1670462153
1198836059
442246743
1641911751
860488200
1273480672