fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. srand(time(0));
  6. for (int i=1; i<=10;i++) cout<<rand()%201+200<<" ";
  7. return 0;
  8. }
Success #stdin #stdout 0s 16064KB
stdin
Standard input is empty
stdout
200 208 333 376 301 396 242 377 220 352