zoukankan      html  css  js  c++  java
  • PAT甲题题解-1069. The Black Hole of Numbers (20)-模拟

    博主欢迎转载,但请给出本文链接,我尊重你,你尊重我,谢谢~
    http://www.cnblogs.com/chenxiwenruo/p/6789244.html
    特别不喜欢那些随便转载别人的原创文章又不给出链接的
    所以不准偷偷复制博主的博客噢~~

    按照题目的意思纯模拟一遍就行了

    #include <iostream>
    #include <cstdio>
    #include <algorithm>
    #include <string.h>
    using namespace std;
    const int maxn=10;
    char str[maxn],str1[maxn],str2[maxn];
    int a,b,c;
    bool cmp1(char a,char b){
        return a>b;
    }
    bool cmp2(char a,char b){
        return a<b;
    }
    int main()
    {
        int n;
        scanf("%d",&n);
        sprintf(str,"%04d",n); //输入的n可能小于4位数,要补0
        bool isSame=true;
        for(int i=1;i<4;i++){
            if(str[i]!=str[i-1]){
                isSame=false;
            }
        }
        if(isSame){
            printf("%s - %s = 0000
    ",str,str);
        }
        else{
            c=0;
            while(c!=6174){
                //strcpy(str1,str);
                //strcpy(str2,str);
                sort(str,str+4,cmp1);
                a=atoi(str);
                sort(str,str+4,cmp2);
                b=atoi(str);
                c=a-b;
                printf("%04d - %04d = %04d
    ",a,b,c);
                sprintf(str,"%04d",c); //注意填0
            }
        }
        return 0;
    }
    View Code
  • 相关阅读:
    Twisted
    day10-redis操作
    day9mysql操作
    day9-paramiko
    day10-rabbitmq
    day9-协程
    day8-异常
    Linux 软连接
    nginx 配置篇
    ansilbe基础学习(一)
  • 原文地址:https://www.cnblogs.com/chenxiwenruo/p/6789244.html
Copyright © 2011-2022 走看看