VOOZH about

URL: https://www.geeksforgeeks.org/scala/scala-byte-x-int-int-6/

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


  • Courses
  • Tutorials
  • Interview Prep

Scala Byte /(x: Int): Int

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

Explore