Java Program to Display First 100 Prime Numbers
- November 22, 2020
- by
Java Program to Display First 100 Prime Numbers
In this Java Program, first 100 prime numbers are displayed to the user.
A prime number is a natural number greater than 1 that is not a product of two small natural numbers.
E.g. 2, 3, 5 etc are prime numbers.
Step 1 : Create main method
Step 2 : Initialize variables n, status and num
Step 3 : Print "First 100 prime numbers are:" using System.out.println method
Step 4 : Apply for loop in which i is equal to 2 and i should be greater and equal to 100
Step 5 : Apply nested for loop in which j is equal to 2 and j is less than equal to Math.sqrt(num) and increment j by 1.
Step 6 : Apply if statement inside nested for loop in which num mod of j should be equal to zero
Step 7 : Store zero in the status variable and break the if statement and close the nested for loop.
Step 8 : Apply if statement in which status is not equal to zero
Step 9 : Print the num and increment the i by 1
Step 10: Store 1 in the status variable and increment num by 1
Program :
public class PrimeNumberDemo2 {
public static void main (String[] args)
{
int n;
int status = 1;
int num = 3;
System.out.println("First 100 prime numbers are:");
System.out.println(2);
for(int i = 2; i <= 100;)
{
for(int j = 2; j <= Math.sqrt(num);j++)
{
if(num%j == 0)
{
status = 0;
break;
}
}
if(status !=0)
{
System.out.println(num);
i++;
}
status = 1;
num++;
}
}
}
Output :
First 100 prime numbers are:
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
101
103
107
109
113
127
131
137
139
149
151
157
163
167
173
179
181
191
193
197
199
211
223
227
229
233
239
241
251
257
263
269
271
277
281
283
293
307
311
313
317
331
337
347
349
353
359
367
373
379
383
389
397
401
409
419
421
431
433
439
443
449
457
461
463
467
479
487
491
499
503
509
521
523
541
For execution of the same do visit my You Tube Channel :
https://youtu.be/seUJ8P4dNqM


0 comments:
Post a Comment