Write a Scala program to check two given integers whether either of them is in the range 100..200 inclusive.
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
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
Sample Output:
need an explanation for this answer? contact us directly to get an explanation for this answer