yang


私信TA

用户名:yang631144

访问量:1995

签 名:

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

  自我简介:

解题思路:利用sprintf函数来转换成字符串

注意事项:

参考代码:

#include <stdio.h>

#include <string.h>

int main()

{

    int a;

    char s[6]={0};

    scanf("%d", &a);

    sprintf(s,"%d",a);

    printf("%d\n",strlen(s));

    printf("%c %c %c %c %c\n",s[0],s[1],s[2],s[3],s[4]);

    printf("%c%c%c%c%c",s[4],s[3],s[2],s[1],s[0]);

    getch();

    return 0;

}


 

0.0分

0 人评分

  评论区

  • «
  • »