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

A program in C that checks if a number is a prime number. I got these conditions so far: if (num == 2 || num%2 != 0 && num > 1) printf("%d is a prime number.\n", num); else printf("%d is not a prime number.\n", num); But I don't know what to do with numbers like 9, 15, 21...

OpenStudy (anonymous):

Or am I going to need a loop here?

OpenStudy (anonymous):

you should go for a loop

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!
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!