Q:

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

0

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

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

<?php
function is_Power_of_two($n)
{
   if(($n & ($n - 1)) == 0)
    {
		return "$n is power of 2";
    }
   else
    {
		return "$n is not power of 2";
    }
}
print_r(is_Power_of_two(4)."\n");
print_r(is_Power_of_two(36)."\n");
print_r(is_Power_of_two(16)."\n");
?>

Sample Output:

4 is power of 2                                             
36 is not power of 2                                        
16 is power of 2

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now