Home >Backend Development >PHP Tutorial >php输出1000以内质数(素数)示例_php实例

php输出1000以内质数(素数)示例_php实例

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-06-07 17:21:591409browse

复制代码 代码如下:

for($i = 2; $i  $primes = 0;
 for($k = 1; $k  if($i%$k === 0) $primes++;
 if($primes  echo "{$i}
";
}
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