解题思路:
注意事项:
参考代码:
#include<stdio.h>
#include<math.h>
int main(void){
int score,num,n=0,i=0,score_,t;
scanf("%d",&score);
t=score;
while(score)
{
num = score % 10;
score /= 10;
i+=1;
score_ = score_ * 10 + num;
}
printf("%d\n",i);
for(n=i;n>0;n--)
{
num=t/pow(10,n-1);
t=t-num*pow(10,n-1);
printf("%d ",num);
}
printf("\n");
printf("%d\n",score_);
return 0;
}
0.0分
2 人评分
C语言程序设计教程(第三版)课后习题8.4 (C语言代码)浏览:631 |
C语言程序设计教程(第三版)课后习题8.7 (C语言代码)浏览:934 |
C语言程序设计教程(第三版)课后习题10.1 (C语言代码)浏览:585 |
矩阵乘方 (C语言代码)浏览:1079 |
罗列完美数 (C语言代码)浏览:519 |
简单的a+b (C语言代码)浏览:1024 |
陈教主的三角形 (C语言代码)浏览:1196 |
C语言程序设计教程(第三版)课后习题8.3 (C语言代码)浏览:417 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:521 |
字符串的修改 (C++代码)浏览:3036 |