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