Skip to content

Instantly share code, notes, and snippets.

@vayn
Created May 22, 2010 08:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vayn/409917 to your computer and use it in GitHub Desktop.
Save vayn/409917 to your computer and use it in GitHub Desktop.
Prime_Number_2
<?php
$sum = 2;
for ($i = 3; $i < 10000; $i+=2) {
$flag = TRUE;
for ($j = 2; $j <= sqrt($i); $j++) {
if ($i % $j == 0) {
$flag = FALSE;
break;
}
}
if ($flag) {
$sum += $i;
echo $i . "\n";
}
}
echo $sum . "\n";
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment