MFC中产生随机数出错
在VC2005下,产生随机数序列出错,什么原因呢?为什么不能使用srand函数产生一个随机种子?: error C2064: term does not evaluate to a function taking 1 arguments
// 获取秒数
s = time.GetSecond();
srand( (unsigned)time( NULL ) );
while (count <= m_iNumber)
{
// 随机产生x,y坐标
x = (rand()*s)%m_Row + 1;
y = (rand()*s)%m_Column + 1;