fork download
  1. #include <iostream>
  2. #include <cstdlib>
  3. #include <ctime>
  4. using namespace std;
  5.  
  6. int main() {
  7. // your code goes here
  8. std::srand(std::time(nullptr));
  9. for(int i=0;i<10;i++) cout << rand() << " ";
  10. return 0;
  11. }
Success #stdin #stdout 0s 5320KB
stdin
Standard input is empty
stdout
1306594658 1744052171 861088372 638559472 1004864186 1359158851 512527485 1992771259 51452190 1053604189