Q:

Write a Scala program to check two given integers whether either of them is in the range 100..200 inclusive

0

Write a Scala program to check two given integers whether either of them is in the range 100..200 inclusive.

 

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

object scala_basic {
  def test(x: Int, y: Int): Boolean = 
    {
      (x >= 100 && x <= 200) || (y >= 100 && y <= 200);
    }
     
   def main(args: Array[String]): Unit = {
      println("Result: " + test(100, 199));
      println("Result: " + test(250, 300));
      println("Result: " + test(105, 190));
    }
}

Sample Output:

Result: true
Result: false
Result: true

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now