Write a PHP program to check two given integers and return the value whichever value is nearest to 13 without going over

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

Write a PHP program to check two given integers and return the value whichever value is nearest to 13 without going over. Return 0 if both numbers go over

الأجوبة

<?php
function test($x, $y)
{
  if ($x > 13 && $y > 13) return 0;
  if ($x <= 13 && $y > 13) return x;
  if ($y <= 13 && $x > 13) return y;
  return $x > $y ? $x : $y;
}

echo (test(4, 5))."\n";
echo (test(7, 12))."\n";
echo (test(10, 13))."\n";
echo (test(17, 33))."\n";

Sample Output:

5
12
13
0
هل كان المحتوى مفيد؟

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

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