/
编写程序,首先从键盘输入一个字符串,然后按照下面要求得到一个新字符串。
新串是在原串中每两个字符之间插入一个空格,如原串为abcdef,则新串为ab cd ef。
然后,将新串逆序(不允许使用辅助数组),最后将得到的字符串输出
/
#include<stdio.h>
#define N 5
#include <string.h>
#include <stdlib.h>
#pragma warning(disable:4996)
void insert(char*s, char*t)
{
while (*s)
{
(*t++) = (*s++);
(*t++) = ' ';
}
*t = 0;
}
void inverse(char*s)
{
int a, i;
a = strlen(s)-1;
for (i = a; i <=a&&i>=0; i--)
{
printf("%c", *(s+i));
}
}
void main()
{
char str[N], str1[N];
fflush(stdin);
scanf("%s", str);
insert(str, str1);
printf("%s\n", str1);
inverse(str1);
system("pause");
}
版权声明:本文为qq_33449790原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。