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

Easy Java Question. I'm trying to write a program that displays all the integers from 1 to 1000 that are not divisible by 13. How would I set it up?

OpenStudy (anonymous):

public class Ch4_Example { public static void main(String[] args) { int x = 1; while (x*x < 5000) { System.out.println(x + " squared = " + x*x); x++; } } }

OpenStudy (anonymous):

that should work

OpenStudy (anonymous):

You can check for divisibility by 13 using `x % 13 == 0`

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!