質數有哪些 php 求質素(質數) 的實作碼

WBOY
發布: 2016-07-29 08:44:41
原創
1093 人瀏覽過

複製程式碼程式碼如下:


類別計時器
{
var $time_start; 🎜>var $time_end;
函數__construct()
{
$this->time_start = 0;
$this->time_end = 0;
}
函數計時器()
{
$this->__construct();
}
函數start()
{
list($usec,$sec) = Explode(" ",microtime ());
$this->time_start = (float)$usec + (float)$sec;
}
函數stop()
{
list($usec,$sec ) = Explode(" ",microtime());
$this->time_end = (float)$usec + (float)$sec;
}
function show($output = false)
{
$total = $this->time_end - $this->time_start;
if ($output) {
echo $total," sec";
回傳真;
}}
回傳$total." sec";
}
}
? >
echo '檢查素數
';
函數IsPrime($i)
{
if($i{
回傳false;
}
//var $iterator;
for($iterator = 2 ; $iterator {
if($i % $iterator==0)
{
return錯誤的;
}
}
回傳true;
}
$sw=新計時器();
$sw->start();
for($j=1;$j{
if(IsPrime($j))
{
echo 'true
';
}
else
{
echo 'false
';
}
}
$sw->stop() ;
$sw->show(true);
? >

以上就介紹了質數有哪些 php 求質素(質數) 的實作程式碼,包括了質數有哪些方面的內容,希望對 PHP 教學有興趣的朋友有幫助。

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
最新問題
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板