El método -(x: Double) se utiliza para encontrar la diferencia entre el 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'.-(11.6574) // Displays output println(result) } }
Producción:
53.3426
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'.-(19.6578) // Displays output println(result) } }
Producción:
48.3422
Publicación traducida automáticamente
Artículo escrito por nidhi1352singh y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA