Print only prime numbers.
AnswerBot
1y
Print only prime numbers.
Iterate through numbers and check if they are divisible by any number less than itself
If not divisible, print the number as prime
Exclude 0, 1 and negative numbers as they are ...read more
swaranjali yamgar
1y
public class Prime
{
public static void main(String[] args)
{
int ct=0,n=0,i=1,j=1;
while(n<25)
{
j=1;
ct=0;
while(j<=i)
{
if(i%j==0)
ct++;
j++;
}
if(ct==2)
{
System.out.printf("%d ",i);
n++;
}
i++; ...read more
Help your peers!
Add answer anonymously...
Top Dell Software Developer interview questions & answers
Popular interview questions of Software Developer
Top HR questions asked in Dell Software Developer
Stay ahead in your career. Get AmbitionBox app
Helping over 1 Crore job seekers every month in choosing their right fit company
65 L+
Reviews
4 L+
Interviews
4 Cr+
Salaries
1 Cr+
Users/Month
Contribute to help millions
Get AmbitionBox app