随机函数
大二一学弟问起的随机函数
[cpp]
#include <stdlib.h>
#include <stdlib.h>
#include <time.h>
#include <stdio.h>
int main()
{
int i;
srand(time(0));//获取系统时间,播种
for(i=0;i<100;i++)
printf(“%d “,rand()%10);//产生随机数
printf(“\n%lf”,(double)clock()/CLOCKS_PER_SEC);//测试运行时间
return 0;
}
[/cpp]