1234567891011121314
#include<iostream> #include<cstdlib> #include<ctime> using namespace std; int main(){ int r; while(true){ srand(time(0)); r = rand() % 10 + 1; cout << r <<endl; } return 0; }
srand