#include
#include
#include
using namespace std; //写了这一句,就包含了所有的标准库里的名字
int main()
{
const int limit1=500; //这两句没有用啊!!
const int limit2=31; //
cout<<"fist we will use the default sequence from rand(),\n"; ///输出引号引住的这一句话,\n回车
cout<<"three randem integer from 0 to"< <//rand_max为最大整数,rand()返回0--最大整数之间的任意整数。必须写成大写才能识别 ,c++中用 cout << endl;回车换行
cout< srand((unsigned int)time(0)):
//srand ()的参数是所谓的随机数产生器种子,种子seed用来限制最大整数,time()函数的功能是返回从1970/01/01到现在的秒数
cout<<"three randem integer form 0 to"< < return 0;
}
每次运行rand()产生0~最大整数的随机数。
--------------------next---------------------
阅读(1177) | 评论(0) | 转发(0) |