赞
踩
编程任务
编写程序,分行输出1000以内所有的素数(每行5个数)。
代码
#include<stdio.h> #include<math.h> int main() { // 请在下面添加代码 // ********** Begin ********** int n,i,count=0; for(n=2;n<=1000;n=n+ 1 ) { for(i=2;i<=n;i++) if(n%i==0) break; if(i==n) { printf("%4d",n); count=count+1; if(count%5==0) printf("\n"); } } // ********** End ********** return 0; }
测试结果
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。