Write a PHP program to check three given integers and return true if one of them is 20 or more less than one of the others
<?php function test($x, $y, $z) { return abs($x - $y) >= 20 || abs($x - $z) >= 20 || abs($y - $z) >= 20; } var_dump(test(11, 21, 31))."\n"; var_dump(test(11, 22, 31))."\n"; var_dump(test(10, 20, 15))."\n";
Sample Output:
bool(true) bool(true) bool(false)
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