Open In App

Scala short /(x: Byte): Int

Last Updated : 05 Dec, 2019
Comments
Improve
Suggest changes
Like Article
Like
Report
Short, a 16-bit signed integer (equivalent to Java's short primitive type) is a subtype of scala.AnyVal. The /(x: Byte) method is utilized to return a result of the quotient operation on the specified Byte value by the x.
Method Definition: def /(x: Byte): Int Return Type: It returns quotient with value and x.
Example #1: Scala
// Scala program of Short /(x: Byte) 
// method 

// Creating object 
object GfG 
{ 

    // Main method 
    def main(args:Array[String]) 
    { 
    
        // Applying Short /(x: Byte) function 
        val result = (998.toShort)./(20:Byte)
        
        // Displays output 
        println(result) 
    
    } 
} 
Output:
49
Example #2: Scala
// Scala program of Short /(x: Byte) 
// method 

// Creating object 
object GfG 
{ 

    // Main method 
    def main(args:Array[String]) 
    { 
    
        // Applying Short /(x: Byte) function 
        val result = (-111.toShort)./(47:Byte)
        
        // Displays output 
        println(result) 
    
    } 
} 
Output:
-2

Next Article
Article Tags :
Practice Tags :

Similar Reads