代码实现:求100之内的素数
//求100之内的素数 public class Test { public static void main(String[] args) { int count = 0; for (int i =2 ; i<100 ;i++ ){ boolean flag=true ; for(int j = 2 ; j < i;j++){ if( i % j == 0 ){ flag=false; break ; } } if(flag){ System.out.print(i + "\t"); count++; if(count % 5 == 0){ System.out.println(); } } } } }
最后,关注【码上加油站】微信公众号后,有疑惑有问题想加油的小伙伴可以码上加入社群,让我们一起码上加油吧!!!