El método %(x: Double) se utiliza para encontrar el resto de la división del valor de carácter indicado por ‘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 = 'E'.%(10.4536) // Displays output println(result) } }
Producción:
6.278400000000001
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 = 'B'.%(15.7644) // Displays output println(result) } }
Producción:
2.9423999999999992
Publicación traducida automáticamente
Artículo escrito por nidhi1352singh y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA