码迷,mamicode.com
首页 > 其他好文 > 详细

计蒜客 T1167 素数回文数的个数

时间:2021-04-06 14:25:50      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:==   als   回文   pause   prim   use   system   lin   计蒜客   

水题~。

int n;

bool isprime(int x)
{
    if(x<2) return false;
    for(int i=2;i*i<=x;i++)
        if(x % i == 0)
            return false;
    return true;
}

bool palindrome(int x)
{
    int res=0,t=x;
    while(t)
    {
        res=res*10+t%10;
        t/=10;
    }
    return res==x;
}

int main()
{
    cin>>n;

    int res=0;
    for(int i=11;i<=n;i++)
        if(isprime(i) && palindrome(i))
            res++;
    cout<<res<<endl;
    //system("pause");
    return 0;
}

计蒜客 T1167 素数回文数的个数

标签:==   als   回文   pause   prim   use   system   lin   计蒜客   

原文地址:https://www.cnblogs.com/fxh0707/p/14615814.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!