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
- برمجة بي اتش بي
- 2021-09-08
- mhanasmh00489829403
الأجوبة
<?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)
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال