Le plus petit élément de trois
int x = min(min(a, b), c);
int x = min({a, b, c});
BreadCode
int x = min(min(a, b), c);
int x = min({a, b, c});