用java语言写一段输出1~100以内的质术的代码
时间: 2024-06-04 09:12:54 浏览: 88
求100以内的质数程序
以下是使用 Java 编写输出 1~100 以内的质数的代码:
public class PrimeNumber {
public static void main(String[] args) {
int count = 0;
for (int i = 2; i <= 100; i++) {
boolean isPrime = true;
for (int j = 2; j < i; j++) {
if (i % j == 0) {
isPrime = false;
break;
}
}
if (isPrime) {
count++;
System.out.print(i + " ");
}
}
}
}
输出结果:
2 3 5 7 11 13 17 19 23 29 31 37 41 43 47 53 59 61 67 71 73 79 83 89 97
希望能够满足您的需求!
阅读全文