Today,让我来带大家学习怎样用C语言求1000以内的素数并输出
在这里,我用到的求素数的方法是用 i 除以 2 ~ i - 1 之间的每一个整数,如果都不能整除,那 i 就是素数,下面就不多说了,上代码:
#include <stdio.h>
int main()
{
int a = 1,sum[1000],t = true,row=0;
sum[0] = 2;
for(int i=3;i<=1000;i++){
int j = 2;
while(t==true&&j<i){
if(i%j == 0){
t = false;
}
j++;
}
if(t == true){
sum[a++] = i;
}
t = true;
}
for(int m=0;m<a;m++){
printf("%d ",sum[m]);
row++;
if(row == 10){
printf("\n");
row = 0;
}
}
return 0;
}
输出的结果是这样:
2 3 5 7 11 13 17 19 23 29
31 37 41 43 47 53 59 61 67 71
73 79 83 89 97 101 103 107 109 113
127 131 137 139 149 151 157 163 167 173
179 181 191 193 197 199 211 223 227 229
233 239 241 251 257 263 269 271 27