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:
object GfG
{
def main(args : Array[String])
{
val result = ( 6.0 ).*( 5 )
println(result)
}
}
|
Example #2:
object GfG
{
def main(args : Array[String])
{
val result = ( 100.0 ).*( 8 )
println(result)
}
}
|