In the previous article "PHP Loop Learning 7: Two Methods to Print the 9*9 Quick Calculation Table", we introduced how to use the for loop and while loop to print the 99 multiplication table. Let's continue to understand the PHP loop and introduce the method of judging whether a given number is a complete number. Interested friends can learn about it~
First of all, let's understandWhat is a perfect number?
##Perfect numberFull namePerfect number, if a number is exactly equal to the sum of its factors, then the number is called "perfect number" number". (Factors refer to divisors other than itself.)
For example: 6=1 2 3, 6 is a perfect number.So if a number num (for example, 6) is given, how do we judge whether the number num is complete?
Idea:i=1; and the divisor cannot be num itself, so the restriction condition is i
$num=6; for($i=1;$i<$num;$i++){ if($num%$i==0){//分解因数 } }
$num=6; $sum=0; for($i=1;$i<$num;$i++){ if($num%$i==0){//分解因数 $sum=$sum+$i; //各因数相加,求和 } }
Output all the complete numbers in a given range (just 1~10000).
Analysis: There is a range of 1~10000, then we use a for loop to limit the range, so that a for loop is placed outside the above code:<?php header("Content-type:text/html;charset=utf-8"); for($a=1;$a<=10000;$a++){ $sum=0; for($i=1;$i<$a;$i++){ if($a%$i==0){//分解因数 $sum=$sum+$i; //各因数相加,求和 } } if($sum==$i){//如果这个数等于本身 则为完数 echo "$i 是完数!<br>"; } } ?>
<?php header("Content-type:text/html;charset=utf-8"); $b=0; for($a=1;$a<=10000;$a++){ $sum=0; for($i=1;$i<$a;$i++){ if($a%$i==0){//分解因数 $sum=$sum+$i; //各因数相加,求和 } } if($sum==$i){//如果这个数等于本身 则为完数 echo "$i 是完数!<br>"; $b++; } } echo "<br>1~10000范围内有:$b 个完数。"; ?>
Recommended:《PHP interview questions summary (collection)》
The above is the detailed content of PHP loop learning eight: count the number of perfect numbers from 1 to 10,000, and output all perfect numbers. For more information, please follow other related articles on the PHP Chinese website!