华师一附中OI组
标题:
孪生质数
[打印本页]
作者:
admin
时间:
2018-12-31 20:00
标题:
孪生质数
#include<iostream>
using namespace std;
int x,y,i,s;
bool bx,by;
int main()
{
s=0;for (x=2;x<=98;x++)
{
y=x+2;
i=2;bx=1;
while (i*i<=x && bx)
if (x%i==0) bx=0;else i++;
i=2;by=1;
while (i*i<=y && by)
if (y%i==0) by=0;else i++;
if (bx && by) cout<<++s<<':'<<x<<' '<<y<<endl;
}
return 0;
}
复制代码
欢迎光临 华师一附中OI组 (http://hsyit.cn/)
Powered by Discuz! X3.2