江里水


私信TA

用户名:WBH33

访问量:1201

签 名:

等  级
排  名 42306
经  验 354
参赛次数 0
文章发表 5
年  龄 0
在职情况 学生
学  校
专  业

  自我简介:

TA的其他文章

解题思路:

注意事项:

参考代码:

#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 人评分

  评论区

  • «
  • »