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...
Dell Software Developer Interview Questions
Stay ahead in your career. Get AmbitionBox app
qr-code
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

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2024 Info Edge (India) Ltd.

Follow us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter