版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有...
srand()函数定义 :void srand (unsigned int seed);通常可以利用geypid()或time(0)的返回值来当做seed 如果你用time(0)的话,要加入头文件#include<time.h> 简单的例子:include "time.h"#include "stdlib.h"int main(){ srand(time(NULL));i = rand() % 10 ;//可取0-9的数 return 0...
newmain.c:15: error: (204) void function can't return a value (908) exit status = 1 nbpro...
time()函数的返回值是 time_t 类型, srand 的定义是 void srand ( unsigned int seed ), 其参数是 warning C4244:这个警告是由于新版本的VC里time_t是64位的,而srand接受32位的unsigned int,所以会丢失数据。改成srand((unsigned)time(NULL));强制转换time_t到unsigned int就可以了。 说明你的程序是使用Un...