エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
letsboost::random
sample #include <ctime> #include <iostream> #include <boost/random.hpp> using namespace std; int ... sample #include <ctime> #include <iostream> #include <boost/random.hpp> using namespace std; int main() { using namespace boost; cout.setf( ios::fixed ); { // 「線形合同法」( Seed=42 ) で // 「一様乱数」(0.0以上1.0未満) を生成 minstd_rand gen( 42 ); uniform_real<> dst( 0, 1 ); variate_generator< minstd_rand&, uniform_real<> > rand( gen, dst ); // 値を取り出すときは () で。 for( int i=0; i<10; ++i ) cout << rand() << endl; cout <