取素数
获得素数:只能被1与自己整除的正整数?
public static void main(String[] args) { boolean[] n = new boolean[100]; Arrays.fill(n, true); for (int i = 2; i * i < n.length; i++) { for (int j = 2 * i; j < n.length; j = i + j) { if (n[j]) { n[j] = false; } } } for (int i = 2; i < n.length; i++) { if (n[i]) { System.out.println(JSON.toJSONString("i=" + i)); } } }
其中优化点为取n的平方根,
收藏文章数量从多到少与“把书读薄”是一个道理
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步