搜索了论坛以前关于随机函数的用法,好像看懂了,可是编出程序的时候却出错了,我不知道错在哪里.
请大家帮忙来看看.
程序如下:
#include <iostream>
#include <stdlib.h>
#include <time.h>
using namespace std;
int main(){
int tempVar;
randomize(); // 本行有错
for(tempVar=0; tempVar<10; tempVar++){
cout << random(30) << endl; // 本行也有错
}
system("pause");
return 0;
}
我的环境是winxpSp1+devCpp;
出错的提示如下:
8 C:\Documents and Settings\数据流\My Documents\randExample01.cpp `randomize' undeclared (first use this function)
10 C:\Documents and Settings\数据流\My Documents\randExample01.cpp `random' undeclared (first use this function)
我开始以为是devcpp中没有time.h和stdlib.h两个函数库,可是搜索后发现有.
对于程序我还有疑问:
stdlib.h 是C 中的函数库,是不是在devcpp中包含头文件的时候C的函数库必须要加上".h",而C++的函数库可以不用加呢?
我开始也用了一个程序来证明这个问题,但是我不清楚是devcpp这样,还是C++的规范如此(在其他的编译环境中)呢?