改进求素数问题

仍是求m到n之间的素数code #include <stdio.h> #include <math.h> int main(void) { int m,n,i; while(scanf("%d %d",&m,&n)==2) { if(m>n) { int t=m; m=n;
相关文章
相关标签/搜索