adspace


Write a program to find whether a given number is prime or not.

Answer Posted / Rahul Mishra

In Java, here's a simple program that checks if a number is prime:
```
import java.util.Scanner;
public class PrimeChecker {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.print("Enter a number to check for primality:");
int num = sc.nextInt();
if (num <= 1) {
System.out.println(num + " is not prime.");
} else {
for (int i = 2; i < num; i++) {
if (num % i == 0) {
System.out.println(num + " is not prime.");
return;
}
}
System.out.println(num + " is prime.");
}
}
}
```

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Please forward important interview and basic questions in VB6 on my email id: usneha_16@yahoo.co.in

2117


hi This is radhika.Can anyone help me to know the question papers of NATIONAL INFORMATICS CENTRE for the post of scientific officer/engineer? if anyone know plz tell me question paper pattern

2184


can we extend a class having only one parameterised constructor.Suggest the process to do it.

2585


please any one pass file aid,xpeditor and endeavor tools

2421


I want sample papers for NIC Examination. Plz send them to my mail Id das.neelam@gmail.com . Plz send it today, tomorrow i've the exam.

2110


Give examples of macro quoting function?

2075


Mainly Related to Oracle, DBMS , Oracle Stored Procedures, Functions, Oracle 9i Architecture, Redo logs..., Views,

2414


hi, all this is shoba m.c.a . i have learned abap but no oppurtunities right now as fresher , right now i want to learn any course on demand any one pls suggest me good course and institute in hyderabad

1882


I am taking the bmc control m/enterprise manager 7.0 scheduling test and just wanted to see what kind of questions they would ask or if anyone has taken the test and how long it is for how many questions?

6221


How to get the index of the clicked field in reports in ABAP?

1773


If u need any fake experience certificate in software side, contact me at: vikramyadhav@gmail.com

8421


Explain the types of operations? Draw the figure for shift and rotate operations?

3427


Hi Guys, This is Rama, right now I am working as a Software Test Engineer in Gurgoan and I have over all 3 years of testing expoeriance. Right now I am looking for a change. Can any body help me out to find a job in south india. Thanks in Advance

1958


what is class module in vb6? what it's use? with example..

2521


what is the diff bw sql direct and jdbc update can't we do select and updating operation in sql direct

2242