echo "The smallest multiple of 225 that is only 1's and 0's is: ";
$multiple = (integer) 225;
$factor = (integer) 1;
while (!isDecimalBinary($multiple))
{
$multiple += 225;
$factor += 1;
}
echo $multiple.':'.$factor;
function isDecimalBinary($number)
{
$stringNumber = (string) $number;
$arrayNumber = str_split($stringNumber);
foreach ($arrayNumber as $item)
{
if ($item != '0' || $item != '1')
{
return FALSE;
}
}
return TRUE;
}
我累了。晚了。我不知道错误在哪里。此外,如果有任何数学技巧可以找到十进制数是否都是二进制数字,我很高兴找到一种耗时更少的方法。