迅速蜻蜓

文章
6
资源
0
加入时间
3年0月9天

C语言中break和continue的区别

把100―200之间的的全部素数数输出来。# include "math.h" main() { int m,k,r,n=0; for(m=101;m<=200;m=m+2;) {if(n%10)printf("\n"); k=sqrt(m); for(r=2;r<=1;r++) if(m%r) break;if(r&gt...