El método min() se utiliza para devolver el valor mínimo de los dos números int especificados.
Method Definition: (First_Number).min(Second_Number)Return Type: It returns true the minimum value of the two specified int numbers.
Ejemplo 1:
Scala
// Scala program of Int min() // method // Creating object object GfG { // Main method def main(args:Array[String]) { // Applying min method val result = (5).min(9) // Displays output println(result) } }
Producción:
5
Ejemplo 2:
Scala
// Scala program of Int min() // method // Creating object object GfG { // Main method def main(args:Array[String]) { // Applying min method val result = (5).min(5) // Displays output println(result) } }
Producción:
5
Publicación traducida automáticamente
Artículo escrito por Kanchan_Ray y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA