Write a PHP program to check two given integers whether either of them is in the range 100..200 inclusive
<?php function test($x, $y) { return ($x >= 100 && $x <= 200) || ($y >= 100 && $y <= 200); } var_dump(test(100, 199)); var_dump(test(250, 300)); var_dump(test(105, 190));
Sample Output:
bool(true) bool(false) bool(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