Home >php教程 >PHP源码 >PHP求小于1000的所有水仙花数

PHP求小于1000的所有水仙花数

PHP中文网
PHP中文网Original
2016-05-25 17:12:152007browse

PHP求小于1000的所有水仙花数

水仙花数是一个n(>=3)位数字的数, 它等于每个数字的n次幂之和. 例如, 153是一个水仙花数, 153=1³+5³+3³. 编写程序, 求解小于1000的所有水仙花数

<?php
for($i=100;$i<1000;$i++){
$a=intval($i/100);
$b=intval($i/10)%10;
$c=$i%10;
if(pow($a,3)+pow($b,3)+pow($c,3)==$i){
echo $i."\t";
}
}
?>


以上就是PHP求小于1000的所有水仙花数的内容,更多相关内容请关注PHP中文网(www.php.cn)!


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:字符串替换的方法Next article:PHP采集微博