VOOZH about

URL: https://www.geeksforgeeks.org/scala/scala-byte-x-double-double-4/

⇱ Scala Byte /(x: Double): Double - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Scala Byte /(x: Double): Double

Last Updated : 14 Jan, 2020
In Scala, Byte is a 8-bit signed integer (equivalent to Java's byte primitive type). The method /(x:Double) method is utilized to return the quotient of this value and x.
Method Definition: Byte /(x: Double): Double Return Type: It returns the quotient of this value and x.
Example #1: Output:
5.33333333
Example #2: Output:
11.363636363636363
Comment
Article Tags:

Explore