Open In App

Scala Int signum() method with example

Improve
Improve
Like Article
Like
Save
Share
Report

The signum() method is utilized to return 1 for positive specified number, -1 for negative specified number and 0 for 0 specified value.

Method Definition: (Value).signum

Return Type: It returns 1 for positive specified number, -1 for negative specified number and 0 for 0 specified value.

Example #1:




// Scala program of Int signum()
// method
   
// Creating object
object GfG
   
    // Main method
    def main(args:Array[String])
    {
       
        // Applying signum method
        val result = (5).signum
           
        // Displays output
        println(result)
       
    }


Output:

1

Example #2:




// Scala program of Int signum()
// method
   
// Creating object
object GfG
   
    // Main method
    def main(args:Array[String])
    {
       
        // Applying signum method
        val result = (-5).signum
           
        // Displays output
        println(result)
       
    }


Output:

-1


Last Updated : 30 Jan, 2020
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads