64,求助!

P2010 [NOIP2016 普及组] 回文日期

信息学carryHarry @ 2020-11-04 19:40:46

#include<bits/stdc++.h>
using namespace std;
int help(int t)
{
    int h=0,d=t;
    while(d>0)
    {
        h=h*10+d%10;
        d/=10;
    }
    return h;
}
int main()
{
    int a,b,ans=0;
    cin>>a>>b;
    for(int i=a;i<=b;i++)
    {
        if(i==help(i))
            ans++;
    }
    cout<<ans;
    return 0;
}

by lan13 @ 2020-12-28 20:18:32

虽然我还没过 但是你都没考虑有些日期是否真实存在的问题吧,,


|