programming-examples/php/Basics/PHP program to check if an integer is the power of another integer..php
2019-11-18 14:44:36 +01:00

23 lines
358 B
PHP

<?php
function is_Power($x, $y)
{
$a = $x;
$b = $y;
while ($x % $y == 0) {
$x = $x / $y;
}
if($x == 1)
{
return "$a is power of $b";
}
else
{
return "$a is not power of $b";
}
}
print_r(is_Power(16,2)."\n");
print_r(is_Power(12,2)."\n");
print_r(is_Power(81,3)."\n");
?>