C++ 隨機函數----談rand() 和 srand() 體會

      在不少時候,程序中會用到隨機數,在C++中就要用到專門用以產生隨機數的標準庫函數rand(),它會產生一個無符號整數,範圍在0~32767,即兩字節16位的整數最大值。而GNU C++產生的隨機數範圍爲2147483647。 範圍中的每個數在每次隨機調用rand時都有相同的機率被選中。 ios

    調用時 ,須要引用頭文件<cstdlib>,示例代碼 函數

//擲20次篩子,每五個一行輸出 spa

#include "stdafx.h" ip

#include <iostream>
using std::cout;
using std::endl;

#include <iomanip>
using std::setw ;

#include <cstdlib>
using std::rand;




int _tmain(int argc, _TCHAR* argv[])
{   


for(int i=1;i<=20;i++)
{
cout<<setw(10)<<(1+rand()%6);//比例縮放,6稱爲縮放因子
if(i%5==0)
{
 cout<<endl;
 
}

}
return 0;
}

  當咱們屢次執行後,咱們會發現每次執行的結果是同樣的,既然是隨機,這是爲何呢??? ci

  這是由於,rand()產生的其實是一個僞隨機數,若是要確保每次產生的都不同,咱們須要引用一個專門爲rand設置隨機化種子的函數srand().示例代碼以下: io

#include "stdafx.h"
#include <iostream>
using std::cout;
using std::endl;
using std::cin ;
#include <iomanip>
using std::setw ;


#include <cstdlib>
using std::rand;
using std::srand;


int _tmain(int argc, _TCHAR* argv[])
{   
unsigned int seed;
     cout<<"輸入隨機化種子(它是一個無符號整數)";
cin>>seed;
srand(seed);




for(int i=1;i<=20;i++)

cout<<setw(10)<<(1+rand()%6);//比例縮放,6稱爲縮放因子
if(i%5==0)
{
 cout<<endl;
 
}

}
return 0;
}
結果1種子爲:67 stream

2種子爲76 隨機數

3當再次執行後,種子仍然爲76的時候,結果和上次執行的同樣: 引用

  OK,,,, gc

相關文章
相關標籤/搜索