[求助]谁能指导我用C做个随机出题系统
我正在学C语言,单位要做个出题系统,有2000个题,随机抽取,并生成试卷,我不会用随机函数,哪位有时间,能指导我一下。谢谢!
[CODE]#include <stdio.h>
#include <stdlib.h>
#include <time.h>
int main(void)
{
int x;
randomize();
for(x=0;x<100;x++)
{
printf("%d ",rand()%2000);
}
getch();
return 0;
}[/CODE]
2000以内的随即数..