Open In App

std::uniform_int_distribution max() method in C++ with examples

Last Updated : 17 Jun, 2019
Comments
Improve
Suggest changes
Like Article
Like
Report
The max() method of uniform_int_distribution class in C++ is used to get the maximum possible value that can be generated by this uniform_int_distribution. Syntax:
result_type max() const;
Parameters: This method do not accepts any parameters. Return Value: This method return the maximum possibly generated value in this uniform_int_distribution. Example: CPP
// C++ code to demonstrate
// the working of max() function

#include <iostream>

// for uniform_int_distribution function
#include <random>

using namespace std;

int main()
{
    int a = 10, b = 100;

    // Initializing of uniform_int_distribution class
    uniform_int_distribution<int> distribution(a, b);

    // Using max()
    cout << "Max value that can be generated"
         << " by this uniform_int_distribution: "
         << distribution.max() << endl;

    return 0;
}
Output:
Max value that can be generated by this uniform_int_distribution: 100
Reference: https://en.cppreference.com/w/cpp/numeric/random/uniform_int_distribution/max

Next Article
Article Tags :
Practice Tags :

Similar Reads