聞きたいこと
クラスのメンバ関数で乱数のシードを今は srand((unsigned int)time(NULL)+i);
としているのですが、ここでsrand((unsigned int)time(NULL));
としたときに乱数の同じ値が生成されてしまいますがどうしてそうなるのでしょうか?
c++
1double random(int i){ 2 srand((unsigned int)time(NULL)+i); 3 x = 2*(rand() / (double)RAND_MAX) -1; 4 //cout << x << endl; 5 y = 2*(rand() / (double)RAND_MAX) -1; 6 //cout << y << endl; 7 //cout << (x)*(x) + (y)*(y) <<endl; 8 return (x)*(x) + (y)*(y); 9 10 }
c++
1 2#include <iostream> 3#include <time.h>//srandのシードのため 4#include <stdlib.h> // rand関数のため 5#include <string.h>//atoi のため 6//#include <windows.h> 7using namespace std; 8 9class random_number { 10// write here... 11public : 12 double x,y; 13 double random(int i){ 14 srand((unsigned int)time(NULL)+i); 15 x = 2*(rand() / (double)RAND_MAX) -1; 16 //cout << x << endl; 17 y = 2*(rand() / (double)RAND_MAX) -1; 18 //cout << y << endl; 19 //cout << (x)*(x) + (y)*(y) <<endl; 20 return (x)*(x) + (y)*(y); 21 22 } 23 24}; 25 26// 2x2の正方形と直径2の円を考える。円の中心は原点とする。 27int main() { 28 // write here... 29 cout << "Input the number of trials:"; 30 long int m; 31 cin >> m; 32 //random_number r[m]; 33 long int i,sum = 0; 34 35 for (i = 0 ; i < m ;i++ ){ 36 random_number r; 37 //Sleep(1000); 38 if(r.random(i) < 1){ 39 sum++; 40 } 41 } 42 cout << "trial = " << m << endl; 43 cout << "inside = " << sum << endl; 44 cout << "A estimate of pi is " <<4 * sum /(double) m <<endl; 45 46 47 48 49 50 51 return 0; 52} 53 54
回答3件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/08/04 10:02
2020/08/04 10:32