[此贴子已经被作者于2005-7-26 5:54:12编辑过]
有!
函数名: rand 功 能: 随机数发生器 用 法: void rand(void); 程序例:
#include <stdlib.h> #include <stdio.h>
int main(void) { int i;
printf("Ten random numbers from 0 to 99\n\n"); for(i=0; i<10; i++) printf("%d\n", rand() % 100); return 0; }
函数名: random 功 能: 随机数发生器 用 法: int random(int num); 程序例:
#include <stdlib.h> #include <stdio.h> #include <time.h>
/* prints a random number in the range 0 to 99 */ int main(void) { randomize(); printf("Random number in the 0-99 range: %d\n", random (100)); return 0; }
函数名: randomize 功 能: 初始化随机数发生器 用 法: void randomize(void); 程序例:
#include <stdlib.h> #include <stdio.h> #include <time.h>
int main(void) { int i;
randomize(); printf("Ten random numbers from 0 to 99\n\n"); for(i=0; i<10; i++) printf("%d\n", rand() % 100); return 0; }