问题描述
现在有一串字符需要输入,规定输入的字符串中只包含字母和号。请编写程序,实现以下功能:除了字符串前后的号之外,将串中其他的号全部删除。
例如,假设输入的字符串为ABCDEFG********,删除串中的号后,字符串变为***ABDEFG********
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
void fun(char*s,int count1,int count2)
{
char t[80] = {
0};
char p[80] = {
0 }; // 先初始化下,防止出现乱码 烫烫烫
int i,j,m;
int len;
for (i = 0; i < count1; i++)
{
t[i] = s[i];
}
for (i = count1,j=count1; i <= count2; i++)
{
/*if (s[i] == '*')
{
t[j] = s[i+1];
}
else
{
t[j++] = s[i];
}*/
if (s[i]