The implementation code of the prime number of PHP for quality (prime number)

Source: Internet
Author: User
Tags what php
Copy CodeThe code is as follows:


Class Timer
{
var $time _start;
var $time _end;
function __construct ()
{
$this->time_start = 0;
$this->time_end = 0;
}
function timer ()
{
$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;
}
Function Show ($output = False)
{
$total = $this->time_end-$this->time_start;
if ($output) {
Echo $total, "SEC";
return true;
}
Return $total. "SEC";
}
}
?>
Echo ' Check prime
';
function IsPrime ($i)
{
if ($i <2)
{
return false;
}
var $iterator;
for ($iterator = 2; $iterator <= sqrt ($i); $iterator + +)
{
if ($i% $iterator ==0)
{
return false;
}
}
return true;
}
$SW =new timer ();
$SW->start ();
for ($j =1; $j <100; $j + +)
{
if (IsPrime ($j))
{
Echo ' True
';
}
Else
{
Echo ' false
';
}
}
$SW->stop ();
$SW->show (TRUE);
?>

The above introduces the prime number of what PHP quality (prime number) of the implementation code, including the prime number of what aspects of the content, I hope that the PHP tutorial interested in a friend helpful.

  • Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.