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

作业.找出100以内所有素数

程序员文章站 2022-05-11 20:25:48
...
public class test3 {

	public static void main(String[] args) {
		int x,y;
		for(x=2;x<=100;x++) {
			for(y=2;y<x;y++) {
				if(x%y==0)
					break;
			}
			if(y==x)
			System.out.print(" "+x);
		}
			
	}

}
作业.找出100以内所有素数