求救:谁会rand()函数
rand()函数产生的随机数的范围是多少啊?如果我想产生一个从0到20的随机数怎么做呢?
给你一段程序,是别人教我的: #include <stdlib.h> #include <stdio.h> #include <time.h> int main(void) { int i; time_t t; srand((unsigned) time(&t)); printf("Ten random numbers from 0 to 20
"); for(i=0; i<10; i++) printf("%d ", rand() % 20); return 0; }