Prime numbers Can you include actual numbers, it'd be easier to comprehend; e.g. from 2 to 7
Prime numbers Is this true: "You can stop at the value of i / j because a number that is larger than i / j cannot...
Prime numbers How this code actually works [code]int i, j; for(i=2; i<16; i++) { for(j=2; j<=(i/j); j++...
C++ Prime NumbersHow this code actually works [code]int i, j; for(i=2; i<16; i++) { for(j=2; j<=(i/j); j++...
Prime numbers confusionIn other words it only breaks 2nd for?
This user does not accept Private Messages