Write a Scala program to check two given integers whether either of them is in the range 100..200 inclusive
- برمجة سكالا
- 2021-09-23
- mhanasmh00489829403
الأجوبة
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
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال
معلومات ذات صلة