if(m%n==0) 这是什么意思
如果m求余n的值为0,就跳出for循环,向下运行
== 关系运算符
m%n m整除n
for(n=2; n<m; n++) { if(m % n == 0) //如果m能够整除n break; //跳出while循环 }
如果m能整除n 则执行if中的语句