Write a PHP program to check whether a given positive integer is a power of four

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

Write a PHP program to check whether a given positive integer is a power of four.

الأجوبة

<?php
function is_Power_of_four($n)
{
      $x = $n;
      while ($x % 4 == 0) {
      $x /= 4;
     }
       
	if($x == 1)
    {
		return "$n is power of 4";
    }
    else
    {
		return "$n is not power of 4";
    }
  
}
print_r(is_Power_of_four(4)."\n");
print_r(is_Power_of_four(36)."\n");
print_r(is_Power_of_four(16)."\n");
?>

Sample Output:
4 is power of 4                                             
36 is not power of 4                                        
16 is power of 4
هل كان المحتوى مفيد؟

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

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