1 | 1019 数字黑洞 (20分) |
我写的辣鸡代码1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
int h2l(int arr[])
{
int res=0;
int len=4;
//选择排序,由大到小
for(int i=0;i<len;++i)
{
for(int j=i+1;j<len;++j)
{
if(arr[j]>arr[i])
{
int temp;
temp=arr[i];
arr[i]=arr[j];
arr[j]=temp;
}
}
}
res=arr[0]*1000+arr[1]*100+arr[2]*10+arr[3];
return res;
}
int l2h(int arr[])
{
int res=0;
int len=4;
//选择排序,由小到大
for(int i=0;i<len;++i)
{
for(int j=i+1;j<len;++j)
{
if(arr[j]<arr[i])
{
int temp;
temp=arr[i];
arr[i]=arr[j];
arr[j]=temp;
}
}
}
res=arr[0]*1000+arr[1]*100+arr[2]*10+arr[3];
return res;
}
int main()
{
char str[10];
gets(str);
int len=strlen(str);
int arr[len];
for(int i=0;i<len;++i)
arr[i]=str[i]-'0';
int high=h2l(arr);//非递增排列
int low=l2h(arr);//非递减排列,注意前面有0被去掉
if(high==low)
printf("%d-%d=0000",high,low);
else{
int aa[4];
while((high-low)!=6174)
{
printf("%d-",high);
if(low<=999)
{
if(low<=99)
{
if(low<=9)
printf("000%d=",low);
else
printf("00%d=",low);
}
else
printf("0%d=",low);
}
else
printf("%d=",low);
int c=high-low;
if(c<=999)
{
if(c<=99)
{
if(c<=9)
{
printf("000%d",c);
aa[0]=0;aa[1]=0;aa[2]=0;aa[3]=c;
}
else
{
printf("00%d",c);
aa[0]=0;aa[1]=0;
aa[2]=c/10;
aa[3]=c%10;
}
}
else
{
printf("0%d",c);
aa[0]=0;
aa[1]=c/100;
aa[2]=(c%100)/10;
aa[3]=(c%100)%10;
}
}
else
{
printf("%d",c);
aa[0]=c/1000;
aa[1]=(c%1000)/100;
aa[2]=((c%1000)%100)/10;
aa[3]=((c%1000)%100)%10;
}
printf("\n");
high=h2l(aa);
low=l2h(aa);
}
printf("%d-",high);
if(low<=999)
{
if(low<=99)
{
if(low<=9)
printf("000%d=",low);
else
printf("00%d=",low);
}
else
printf("0%d=",low);
}
else
printf("%d=",low);
printf("6174");
}
}