unsigned int s; 可以是全局局部变量 随机数rand
srand((unsigned)time(0)); //只能是局部变量
s=rand()%10+1;/只能是局部变量
否则会出现see declaration of 'i'
http://www.cctry.com/thread-36733-1-1.html
变量 i 重复初始化了 |
unsigned int s; 可以是全局局部变量 随机数rand
srand((unsigned)time(0)); //只能是局部变量
s=rand()%10+1;/只能是局部变量
否则会出现see declaration of 'i'
http://www.cctry.com/thread-36733-1-1.html
变量 i 重复初始化了 |