随机数问题
#include <stdio.h>#include <stdlib.h>
#include <windows.h>
int main()
{
char k;
int i;
for(i=0;i<100;i++)
{
scanf("%c",&k);
if(k=='\n')
{
srand(time(NULL));
int number = 100+rand()%899;
printf("%d\n",number);
}
}
system("pause");
return 0;
}
想显示三位随机数,可是数字都很靠近(比如,345,348,351,354.。。)。