how to write a program to print first 15 prime nos in java?

Recommended Answers

All 4 Replies

Member Avatar for Dukane

We will not program your assignments for you. You have to show us some effort before we can help you. Post your code, we can help diagnose some problems. But don't come here expecting us to answer questions without any effort on your part.

To get started, ignore the Java part completely. Just think about what you need to do in order to compute prime numbers. Come up with an "algorithm" of how to do it in your mind.

Then re-write the steps you took in your mind as Java statements. Make this a method in a class (perhaps public static void main). Iterate through the steps enough times until you have 15 of them.

Member Avatar for iamthwee

>how to write a program to print first 15 prime nos in java?
Do something surprising, I dunno maybe try it yourself. No wait. That's just being silly isn't it?

first find out how to print things.
next find 15 prime numbers (that's easy, there's sure to be lists of the thing, so no need to calculate them).

Combine the two and you have your solution.

better search in google...

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.