#include
<algorithm>
const T& max (const T& a, const T& b) const T& max (const T& a, const T& b, Binary comp) T max(std::initializer_list<T> values) T max(std::initializer_list<T> values, Binary comp) const T& ranges::max (const T& a, const T& b, Binary comp = {}, Proj proj = {}) T ranges::max (std::initializer_list<T> values, Binary comp = {}, Proj proj = {}) T ranges::max (Range r, Binary comp = {}, Proj proj = {})
Liefert den größten Wert.
a | Wert |
b | Wert |
comp | Sortierkriterium (Vorgabe = less ) |
proj | einstelliger Funktor (Vorgabe = std::identity ) |
Rückgabewert: b
, wenn a < b
bzw. comp(proj(a),proj(b)) != false
,
sonst a
.
#include <algorithm> #include <iostream> int main() { int x, y; std::cout << "Gib zwei zahlen ein: "; std::cin >> x >> y; std::cout << std::min(x,y) << " <= " << std::max(x,y) << '\n'; }