NYOJ 26 孪生素数问题
摘要:
地址:http://acm.nyist.net/JudgeOnline/problem.php?pid=26思路:筛法求孪生素数 1 //筛法求孪生素数 2 #include<stdio.h> 3 #include<math.h> 4 #include<string.h> //memset函数 5 bool visit[1000001]; //判断是否拜访过 6 int main() 7 { 8 int i,j,n,count; 9 long int m; 10 scanf("%d",&n);11 while(n--)12 {13 阅读全文
posted @ 2012-08-15 21:08 mycapple 阅读(505) 评论(0) 推荐(0) 编辑