-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFFPrime.java
More file actions
39 lines (34 loc) · 806 Bytes
/
FFPrime.java
File metadata and controls
39 lines (34 loc) · 806 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
35
36
37
38
39
/* Write a program to print first fifteen prime number */
class FFPrime
{
public static void main(String[] args)
{
int count = 0;
int number = 2;
System.out.println("First fifteen prime numbers:");
while (count < 15)
{
if (isPrime(number))
{
System.out.print(number + " ");
count++;
}
number++;
}
}
public static boolean isPrime(int number)
{
if (number <= 1)
{
return false;
}
for (int i = 2; i <= Math.sqrt(number); i++)
{
if (number % i == 0)
{
return false;
}
}
return true;
}
}