Scala Float *(x: Byte) method with example
The *(x: Byte) method is utilized to return the product of the specified float value and byte value.
Method Definition: (Float_Value).*(Byte_Value)
Return Type: It returns the product of the specified float value and byte value.
Example #1:
// Scala program of Float *(x: Byte) // method // Creating object object GfG { // Main method def main(args : Array[String]) { // Applying *(x: Byte) function val result = ( 6.0 ).*( 5 ) // Displays output println(result) } } |
Output:
30.0
Example #2:
// Scala program of Float *(x: Byte) // method // Creating object object GfG { // Main method def main(args : Array[String]) { // Applying *(x: Byte) function val result = ( 100.0 ).*( 8 ) // Displays output println(result) } } |
Output:
800.0