标签:des style blog io color sp for strong 文件
Description
Input
Output
Sample Input
0 1 0 0
Sample Output
OK
//主要是想说一下sqrt(x)精度损失问题。
//floor向下取整(包含在assert.h头文件中)。
1 #include<stdio.h> 2 #include<string.h> 3 #include<assert.h> 4 #include<math.h> 5 6 int judge(int x)//判断一个数是否为素数//logn 7 { 8 if(x==0 || x==1) return 0; 9 int m = floor(sqrt(x)+0.5); 10 for(int i=2; i<=m; i++) 11 { 12 if(x%i==0) 13 { 14 return 0; 15 } 16 } 17 return 1; 18 } 19 int main() 20 { 21 int x, y, i, k, cnt; 22 int s[10000]; 23 while(~scanf("%d%d", &x, &y) ) 24 { 25 if(x==0 && y==0) break; 26 k = 0; 27 cnt = 0; 28 memset(s, 0, sizeof(s)); 29 for(i=x; i<=y; i++) 30 { 31 s[k++] = i*i+i+41; 32 if(s[k-1]<0) 33 s[k-1] = -s[k-1]; 34 if(judge(s[k-1])) 35 cnt++; 36 } 37 if(cnt == y-x+1) 38 printf("OK\n"); 39 else printf("Sorry\n"); 40 } 41 return 0; 42 }
标签:des style blog io color sp for strong 文件
原文地址:http://www.cnblogs.com/6bing/p/4115665.html