素数C ++

时间:2010-08-03 13:33:36

标签: c++

  

可能重复:
  C++ Prime number task from the book

已经问过这个问题,但没有得到令人满意的答案; 那么有人可以清楚以下代码在初学者的水平上可以理解[我是初学者],它来自Herbert Schildt的C ++ From The Ground Up第3版

 int i, j;

 for(i=2; i<16; i++) {
  for(j=2; j<=(i/j); j++) //In this line I'm confused with the condition logic 
   if(!(i%j)) break ; 
  if(j>(i/j)) cout<<i<<" / "<<j<<endl; //This line confuses me most

0 个答案:

没有答案