Ask your own question, for FREE!
Computer Science 15 Online
OpenStudy (anonymous):

In PS2 I'm having problem with test method for primes... How to solve that?

OpenStudy (anonymous):

I'm not sure what class you are taking, but I would imagine from a pseudocode perspective the best approach to finding out if a number is a prime is to use an incremental loop which divide the number by the loop counter and sees if there is a remainder. If there is no remainder then the number is not a prime. You will ant to skip the number 1 and the number itself so the loop will go from 2 to n-1. prime = true; for (i=2; i < (n-1); i++) { if ((n % i)=0) { prime = false; } } Nothing fancy but a basic Java loop to address the question.

OpenStudy (rsmith6559):

Post your code, ask a specific question and we'll have something to help you with. Otherwise, the answer to your question is: consider the attributes that make a number prime, and develop tests for each of those characteristics.

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Latest Questions
RAVEN69: My drawing so far is actually fire
1 week ago 9 Replies 2 Medals
PureSoulless: is staying at your friend's house while you're homeless legal.
2 weeks ago 5 Replies 1 Medal
whyjustwhy: i did that one TV girl trend with blake (aka @ShadowKid3)
1 week ago 12 Replies 2 Medals
whyjustwhy: i did that one TV girl trend with blake (aka @shadowkid3)
2 weeks ago 3 Replies 0 Medals
whyjustwhy: yo guys he can watch me sleep now (ignore dora)
3 weeks ago 24 Replies 1 Medal
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!