主题:高手解疑
for(int c=0; c<10; c++)
{
srand(time(NULL));
int i=rand()%10;
cout<<i<<" ";
int b=rand()%10;
cout<<b<<" ";
int a=rand()%10;
cout<<a<<endl;
}
刚接触随机数,不知道这么用,就写了个简单程序实践下。请教高手指点下,为什么每次循环出的结果都是一样的,需要如何改进。谢谢
{
srand(time(NULL));
int i=rand()%10;
cout<<i<<" ";
int b=rand()%10;
cout<<b<<" ";
int a=rand()%10;
cout<<a<<endl;
}
刚接触随机数,不知道这么用,就写了个简单程序实践下。请教高手指点下,为什么每次循环出的结果都是一样的,需要如何改进。谢谢