intmain() { intn=1000; srand(time(NULL));//把这个放到循环外面 while(n) { std::cout<<rand()%5<<std::endl; n--; } } 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13.