El método /(x: Short) se utiliza para devolver el cociente cuando el valor int especificado se divide por el valor short.
Definición del método: (Int_Value)./(Short_Value)
Tipo de retorno: Devuelve el cociente cuando el valor int especificado se divide por el valor corto.
Ejemplo 1:
// Scala program of Int /(x: Short) // method // Creating object object GfG { // Main method def main(args:Array[String]) { // Applying Int /(x: Short) function val result = (100)./(10) // Displays output println(result) } }
Producción:
10
Ejemplo #2:
// Scala program of Int /(x: Short) // method // Creating object object GfG { // Main method def main(args:Array[String]) { // Applying Int /(x: Short) function val result = (110)./(9) // Displays output println(result) } }
Producción:
12
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