Write a PHP program to compute the sum of the three given integers. However, if any of the values is in the range 10..20

  • برمجة بي اتش بي

Write a PHP program to compute the sum of the three given integers. However, if any of the values is in the range 10..20 inclusive then that value counts as 0, except 13 and 17.

 

الأجوبة

<?php
function test($x, $y, $z)
{
  return fix_num($x) + fix_num($y) + fix_num($z);
}


function fix_num($n)
  {
      return (($n < 13 && $n > 9) || ($n > 17 && $n < 21)) ? 0 : $n;
  }
        
echo (test(4, 5, 7))."\n";
echo (test(7, 4, 12))."\n";
echo (test(10, 13, 12))."\n";
echo (test(17, 12, 18))."\n";

Sample Output:

16
11
13
17
هل كان المحتوى مفيد؟

تبحث عن مدرس اونلاين؟

محتاج مساعدة باختيار المدرس الافضل؟ تواصل مع فريقنا الان لمساعدتك بتأمين افضل مدرس
ماهو التخصص الذي تبحث عنه؟
اكتب هنا...