日期:2014-05-16 浏览次数:20669 次
#include <stdio.h>
int first_chk(int no)
{
if(no%2==0||
no%3==0||
no%5==0)
return 0;
return -1;
}
int second_chk(int no)
{
if(no%4==0||
no%6==0||
no%7==0||
no%8==0||
no%9==0)
return -1;
return 0;
}
main()
{
int i=0;
int count=1;
int array[2013];
for(i=2;i<1000000000;i++)
{
if(2012==count)
break;
if(!first_chk(i))
if(!second_chk(i))
{
array[count]=i;
printf("the [%d]-->%d\n",count,array[count]);
count++;
}
}
return;
}