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

输出100-200内的质数

程序员文章站 2024-03-15 12:49:29
...
public class Test15 {

	public static void main(String[] args) {
		// TODO Auto-generated method stub
		 int j;
	        for (int i = 100; i <= 200; i++) 
	        {
	            j = 2;
	            while (i % j != 0) {
	                j++; 
	            }
	            if (j == i) 
	            {
	                System.out.print(i + "\t"); 
	            }
	        }
	}

}