最終更新日時(UTC):
が更新

履歴 編集

function
<random>

std::binomial_distribution::t(C++11)

IntType t() const;

概要

試行回数tを取得する。

戻り値

構築時に設定された、試行回数tを返す。

#include <iostream>
#include <random>

int main()
{
  std::binomial_distribution<> dist(3, 0.5);

  int t = dist.t();
  std::cout << t << std::endl;
}

出力

3

バージョン

言語

  • C++11

処理系

参照