复代码 代码如下:
수업 타이머
{
var $time_start;
var $time_end;
함수 __construct()
{
$this->time_start = 0;
$this->time_end = 0;
}
함수 타이머()
{
$this->__construct();
}
function start()
{
list($usec,$sec) =Explode(" ",microtime());
$this->time_start = (float)$usec (float)$sec;
}
function stop()
{
list($usec,$sec) =Explode(" ",microtime());
$this->time_end = (float)$usec (float)$sec;
}
함수 표시($output = false)
{
$total = $this->time_end - $this->time_start;
if ($output) {
echo $total," 초";
참을 반환합니다.
}
$total을 반환합니다." sec";
}
}
?>
echo '체크 프라임
';
함수 IsPrime($i)
{
if($i<2)
{
false를 반환합니다.
}
//var $iterator;
for($iterator = 2 ; $iterator <= sqrt($i) ; $iterator )
{
if($i % $iterator==0)
{
return 거짓;
}
}
true를 반환합니다.
}
$sw=새 타이머();
$sw->start();
for($j=1;$j<100;$j )
{
if(IsPrime($j))
{
echo 'true
';
}
else
{
echo 'false
';
}
}
$sw->stop();
$sw->show(true);
?>
以上就介绍了素数有哪些 php 求质素(素数) 的实现代码, 包括了素数有哪些方讹, 希望对PHP教程有兴趣的未友有所帮助。