Open In App

std::uniform_real_distribution max() method in C++ with Examples

Improve
Improve
Like Article
Like
Save
Share
Report

The max() method of uniform_real_distribution class in C++ is used to get the maximum possible value that can be generated by this uniform_real_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_real_distribution.

Example:




// C++ code to demonstrate
// the working of max() function
  
#include <iostream>
  
// for uniform_real_distribution function
#include <random>
  
using namespace std;
  
int main()
{
    double a = 10, b = 20.5;
  
    // Initializing of uniform_real_distribution class
    uniform_real_distribution<double> distribution(a, b);
  
    // Using max()
    cout << "Max value that can be generated"
         << " by this uniform_real_distribution: "
         << distribution.max() << endl;
  
    return 0;
}


Output:

Max value that can be generated by this uniform_real_distribution: 20.5

Reference: http://www.cplusplus.com/reference/random/uniform_real_distribution/max/


Last Updated : 17 Jun, 2019
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads