El método /(x: Int) se utiliza para encontrar el cociente del valor del carácter indicado y ‘x’ de tipo Int.
Definición del método: def /(x: Int): Int
Tipo de Retorno: Devuelve Entero.
Ejemplo 1#
// Scala program of /(x: Int) // method // Creating object object GfG { // Main method def main(args:Array[String]) { // Applying /(x: Int) method val result = 'D'./(20) // Displays output println(result) } }
Producción:
3
Ejemplo: 2#
// Scala program of /(x: Int) // method // Creating object object GfG { // Main method def main(args:Array[String]) { // Applying /(x: Int) method val result = 'D'./(23) // Displays output println(result) } }
Producción:
2
Publicación traducida automáticamente
Artículo escrito por nidhi1352singh y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA