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

编写一个程序,找出大于200的最小的质数

程序员文章站 2022-07-07 10:39:52
...

public class Homework {

public static void main(String[] args) {
	 int n = 201;
        while (true)
        { boolean b = true;
            for (int i = 2; i < n; i++)
            {if (n % i == 0) b = false;
            }
            if (b) break;
            n++;
        }
        System.out.println(n);
	}
}
相关标签: Java 质数