Chinaunix首页 | 论坛 | 博客
  • 博客访问: 2341163
  • 博文数量: 816
  • 博客积分: 10000
  • 博客等级: 上将
  • 技术积分: 5010
  • 用 户 组: 普通用户
  • 注册时间: 2008-12-17 17:57
文章分类

全部博文(816)

文章存档

2011年(1)

2008年(815)

分类:

2008-12-17 18:08:08

#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) |
给主人留下些什么吧!~~