// C++ program to demonstrate the use of std::max
// C++ program to demonstrate the use of std::max
#include<iostream>
#include<algorithm>
using namespace std;
int main()
{
// Comparing ASCII values of a and b
cout << std::max('a','b') << "
";
// Returns the first one if both the numbers
// are same
cout << std::max(7,7);
return 0;
}
int INT_MAX = 2147483647;
#include<algorithm>
using namespace std;
int main(){
int exa=8;
int exa2=20;
max=max(exa,exa2);
}
2147483647
unsigned long long int = 18 446 744 073 709 551 615
// max example
#include <iostream> // std::cout
#include <algorithm> // std::max
int main () {
std::cout << "max(1,2)==" << std::max(1,2) << '
';
std::cout << "max(2,1)==" << std::max(2,1) << '
';
std::cout << "max('a','z')==" << std::max('a','z') << '
';
std::cout << "max(3.14,2.73)==" << std::max(3.14,2.73) << '
';
return 0;
}
int i=INT_MAX;
int a = min(2,3); // for two arguments
int b = max(2,3);
int x = min({2,3,4,5}); // for more than two arguments
int y = max({2,3,4,5});
// a = 2 b = 3
// x = 2 y = 5
#include <algorithm> // these two line of code should bw included
using namespace std;
class RandomClass
{
int Functions(int a,int b)
{
return max(a,b);
}
};