欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

输出101到200之间的质数

程序员文章站 2022-03-13 09:45:52
...
public class Test {
	public static void main(String args[]) {
			for(int i=101;i<200;i+=2) {
				boolean f = true;
				for(int j=2;j<i;j++) {
						if(i%j==0) {
							f = false;
							break;
						}
				}
				if(!f) {continue;}
				System.out.print(" "+i);
				
			}
			
		
	}
}