We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
int d = min(5, 9); // Atribui5 à "d" int e = min(-4, -12); // Atribui -12 à "e" float f = min(12.3, 230.24); // Atribui 12.3 à "f"
Determina o menor valor entre dois ou três números.
min(valor1, valor2) min(valor1, valor2, valor3)
Parâmetros valor1 int ou float
valor2 int ou float
valor3 int ou float
int ou float (dependendo do tipo das entradas)
Web & Applicações
max()