黑暗骑士 发表于 2012-10-10 19:06:18

无法编译成功

函数名: 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;
}
这个是函数大全中的例程,我在c中用random时无法编译通过,然后去函数大全看例程发现也无法编译通过..而且出错原因是randomize没有定义引起..不知道怎么回事了.

心驰神往 发表于 2020-11-4 15:27:46

用rand
页: [1]
查看完整版本: 无法编译成功