当前位置: 代码迷 >> 综合 >> PAT A 1069 The Black Hole of Numbers (20分)
  详细解决方案

PAT A 1069 The Black Hole of Numbers (20分)

热度:85   发布时间:2024-01-25 04:03:07.0

一、思路

一些int和string转换的方法

1、string转int:
(1)atoi(char*)
(2)sscanf(char *, “%d”, &intager)从c字符串中读入整数;

2、int转string:
(1)to_string(int)
(2)sprintf(str, “%d”, intager)将整数输出至c字符串;

本体坑点总结:

1、题目给出的输入未必是四位整数,如不会给出0001而使直接给出1,因此注意用整数读入,或自己添0;
2、测试点5错误:输入6174的情况
3、同时注意输入0的情况

二、代码

#include <cstdio>
#include <cstring>
#include <algorithm>
#include <vector>
using namespace std;
int main()
{char num[5];int a, b;scanf("%d", &a);sprintf(num, "%04d", a);do{sort( num, num + 4, [](char a, char b){ return a > b; } );a = atoi( num );sort( num, num + 4 );b = atoi( num );printf("%04d - %04d = %04d\n", a, b, a - b);sprintf(num, "%04d", a - b);}while( strcmp(num, "6174") && strcmp(num, "0000") );
}