一段函数获取完全数
header("Content-type:text/html;charset=utf-8"); /* * 因数概念:假如整数n除以m,结果是无余数的整数,那么我们称m就是n的因数。 * 完全数概念:如果一个数恰好等于它的因子之和,则称该数为“完全数”。 */ function get_mul($num) { for($i = 1; $i <= $num; $i ++) { for($j = 1; $j < $i; $j ++) { // 内层for循环求一个数的除自身外的所有因数 if ($i % $j == 0) { $arr [] = $j; } } if (isset ( $arr )) { if (array_sum ( $arr ) == $i) { // 如果因数的和刚好等于这个数,说明它是完全数 $res [$i] ['full'] = $i; // 将这个数存进数组 $res [$i] ['mul'] = $arr; // 将这个数的因数也存进数组 } $arr = array (); // 每求得一个完全数,存放因数的数组要清空,不然多个数的因数会存在在一起,结果错误 } } if (isset ( $res )) { return $res; } else { return false; } } $arr = get_mul ( 1000 ); if ($arr) { echo '100以内的完全数有: '; foreach ( $arr as $key => $value ) { echo $value ['full'] . '--它的因数有:' . implode ( ',', $value ['mul'] ) . '(不包括本身) '; } } else { echo '无任何完全数'; }
以上就是因数与完全数的内容,更多相关内容请关注PHP中文网(www.php.cn)!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 English version
Recommended: Win version, supports code prompts!

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Notepad++7.3.1
Easy-to-use and free code editor

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool
