已经问过这个问题,但没有得到令人满意的答案; 那么有人可以清楚以下代码在初学者的水平上可以理解[我是初学者],它来自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