我用于150个数字的循环并找出该范围内的质数,我想要一种语法来获取质数。我的代码中的问题是我无法在if语句中获取素数。它有条件语句来获取素数吗?
<table border="1">
<?php
for ($x=1; $x <= 100; $x++){
if($x%10 ==1) {
echo "<tr>";
}
if($x%2!==0&&$x%$x==0&&$x>1){
echo "<td style='background-color:yellow;'>$x</td>" ;
}
else{
echo "<td>$x</td>" ;
}
}
echo "</tr>";
?>
</table>