文件名称:判断素数-devexpress中gridcontrol使用技巧总结-详解(图文并茂)
文件大小:4.48MB
文件格式:PDF
更新时间:2024-06-28 10:37:23
java 入门资料 java入门资料
2.2 判断素数 2.2.1 题目:判断 101-200 之间有多少个素数,并输出所有素数。 2.2.2 源程序 public class Prime { public static int count = 0; public static void main(String[] args) { for (int i = 101; i < 200; i++) { boolean b = true;// 默认此数就素数 for (int j = 2; j <= Math.sqrt(i); j++) { if (i % j == 0) { b = false; // 此数不是素数 break; } } if (b) { count++; System.out.print(i + " "); } } System.out.println("\n素数的个数:" + count);