摘要: <?php$sum=0;for($i=101;$i<=200;$i++){ for($j=2;$j<=sqrt($i);$j++) { if($i%$j==0) { continue 2; } } echo $i.' '; } ?> 阅读全文
posted @ 2019-11-28 22:46 Kruskal 阅读(495) 评论(0) 推荐(0)