public class test2 {
public static void main(String[] args) {
System.out.println("素数有:");
for(int t=2;t<=100;t++){
int bc=2;
//这使用循环直达找到能整除的,不用担心一直循环,因为一定会被本身整除;
while(t%bc!=0){
bc++;
}
//跳出循环以后,判断这个bc是不是本身,如果是,那么2到这个数之间就没有任何数整除它,它就素数 ;
if(bc==t){
System.out.println(bc);
}
}
}
}
0 评论