Write a java program, that accepts an integer number and check if the number is a prime number or not. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Write a java program, that accepts an integer number and check if the number is a prime number or not.

write a full code

27th Jul 2017, 1:25 PM
Oseni Luthfulahi Olaitan
Oseni Luthfulahi Olaitan - avatar
3 Answers
+ 2
public class Program{ public static void main(String[] args) { int num = 100000; boolean flag = false; for(int i = 2; i <= num/2; ++i) { // condition for nonprime number if(num % i == 0) { flag = true; break; } } if (!flag) System.out.println(num + " is a prime number."); else System.out.println(num + " is not a prime number."); } }
11th Aug 2017, 9:30 PM
Housam Abbas
Housam Abbas - avatar
0
Nice
11th Aug 2017, 9:37 PM
Oseni Luthfulahi Olaitan
Oseni Luthfulahi Olaitan - avatar
0
Thanks
11th Aug 2017, 9:37 PM
Oseni Luthfulahi Olaitan
Oseni Luthfulahi Olaitan - avatar