-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIsPrime.java
More file actions
34 lines (27 loc) · 848 Bytes
/
IsPrime.java
File metadata and controls
34 lines (27 loc) · 848 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
package lab6;
public class IsPrime {
public static void main(String[] args) {
generatePrime(1, 100);
}
public static boolean isPrime(int number) {
if (number <= 1) {
return false;
}
// Check for divisibility from 2 to the square root of the number
for (int i = 2; i <= Math.sqrt(number); i++) {
if (number % i == 0) {
return false;
}
}
return true;
}
public static void generatePrime(int start, int end) {
System.out.println("Prime numbers between " + start + " and " + end + ":");
for (int i = start; i <= end; i++) {
if (isPrime(i)) {
System.out.print(i + " ");
}
}
System.out.println();
}
}