解题思路:
注意事项:
参考代码:
#include<stdio.h>
int f(int n);
int fx(int n);
int main()
{
int M,L,count;
scanf("%d",&L);
while(L--)
{
count=0;
scanf("%d",&M);
while(!f(M)&&count<=8)
{
M+=fx(M);
count++;
}
if(count<=8) printf("%d\n",count);
else printf("%d\n",0);
}
return 0;
}
int f(int n)
{
int tem,a=0;
tem=n;
while(tem/10!=0)
{
a=10*a+tem%10;
tem/=10;
}
a=10*a+tem;
if(a==n) return 1;
else return 0;
}
int fx(int n)
{
int tem,a=0;
tem=n;
while(tem/10!=0)
{
a=10*a+tem%10;
tem/=10;
}
a=10*a+tem;
return a;
}
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题6.3 (C语言代码)浏览:466 |
九宫重排 (C++代码)浏览:2194 |
P1001 (C语言代码)浏览:836 |
C语言程序设计教程(第三版)课后习题8.6 (C语言代码)浏览:631 |
简单的a+b (C语言代码)浏览:560 |
C语言程序设计教程(第三版)课后习题6.8 (C语言代码)浏览:544 |
1126题解浏览:649 |
大家好,我是验题君浏览:604 |
C语言程序设计教程(第三版)课后习题7.4 (C语言代码)浏览:548 |
简单的a+b (C语言代码)浏览:617 |