1069 The Black Hole of Numbers (20 分)

注意不满\(4\)位的话要补成\(4\)位。

string s;
set<int> S;

int main()
{
    cin>>s;
    while(s.size()<4) s='0'+s;

    while(true)
    {
        sort(s.begin(),s.end(),greater<char>());
        string sa=s;

        reverse(s.begin(),s.end());
        string sb=s;

        int a=stoi(sa),b=stoi(sb);
        int res=a-b;

        if(S.count(res)) break;
        else
        {
            printf("%04d - %04d = %04d\n",a,b,res);
            S.insert(res);
            s=to_string(res);
            while(s.size()<4) s='0'+s;
        }
    }
    //system("pause");
    return 0;
}
上一篇:3P - Snooker


下一篇:Linux操作系统中文件结构stat中st_size的说明以及对于文件中洞(Holes)的理解