用Java编写:求100以内的素数,并将这些数在屏幕中5个一行输出
时间: 2023-12-14 18:40:06 浏览: 70
JAVA找出100以内的素数
以下是Java代码实现:
```java
public class PrimeNumbers {
public static void main(String[] args) {
int count = 0;
for (int i = 2; i <= 100; i++) {
boolean isPrime = true;
for (int j = 2; j <= Math.sqrt(i); j++) {
if (i % j == 0) {
isPrime = false;
break;
}
}
if (isPrime) {
System.out.printf("%-5d", i);
count++;
if (count % 5 == 0) {
System.out.println();
}
}
}
}
}
```
程序运行结果:
```
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
```
阅读全文