Skip to content

Instantly share code, notes, and snippets.

@morimorihoge
Created October 31, 2016 11:16
Show Gist options
  • Save morimorihoge/e905c9444ee1bf4420fa09b4968375c1 to your computer and use it in GitHub Desktop.
Save morimorihoge/e905c9444ee1bf4420fa09b4968375c1 to your computer and use it in GitHub Desktop.
<?php
$max = 1000;
for($i = 2;$i <= 1000;$i++){
$devidable = false;
for($j = ($i - 1);$j > 1;$j--){
if($i % $j == 0){
$devidable = true;
}
}
if(!$devidable){
echo $i."<br />";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment