解题思路:直接利用字符串接收,用strlen()函数输出位数
注意事项:
参考代码:
#include <stdio.h>
#include <string.h>
int main()
{
char s[6]={0};
scanf("%s", s);
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 人评分