Scala Int /(x: Short) method with exampleReadDiscussCoursesPracticeImprove Article ImproveSave Article SaveLike Article LikeThe /(x: Short) method is utilized to return the quotient when the specified int value is divided by the short value.Method Definition: (Int_Value)./(Short_Value)Return Type: It returns the quotient when the specified int value is divided by the short value.Example #1:// Scala program of Int /(x: Short)// method // Creating objectobject GfG{ // Main method def main(args:Array[String]) { // Applying Int /(x: Short) function val result = (100)./(10) // Displays output println(result) }} Output: 10 Example #2:// Scala program of Int /(x: Short)// method // Creating objectobject GfG{ // Main method def main(args:Array[String]) { // Applying Int /(x: Short) function val result = (110)./(9) // Displays output println(result) }} Output: 12 Last Updated : 11 Nov, 2019Like Article Save Article Please Login to comment...Similar ReadsScala String regionMatches(int toffset, String other, int offset, int len) method with exampleScala Int to(end: int, step: int) method with exampleScala Int until(end: Int, step: Int) method with exampleScala short /(x: Short): IntScala short &(x: Short): IntScala short &(x: Int): IntScala short /(x: Int): IntScala Short !=(x: Short) method with exampleScala Short %(x: Short) method with exampleScala Short *(x: Short) method with example LikePreviousScala Int /(x: Int) method with exampleNext Scala TreeSet mkString() method with a separator with exampleArticle Contributed By :KKanchan_RayKanchan_Ray FollowVote for difficultyEasy Normal Medium Hard ExpertArticle Tags :ScalaScala-Data TypeScala-MethodScalaReport Issue