3个回答
展开全部
CString str;
str = "t e s t";
str.Replace(" ","");
不需要函数了,就这个就可以了。
str = "t e s t";
str.Replace(" ","");
不需要函数了,就这个就可以了。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
char* fun(char* str)
{
int i,j;
i=j=0;
while(str[i])
{
if(str[i]!=' ')
str[j++]=str[i];
i++;
}
str[j]='\0';
return str;
}
{
int i,j;
i=j=0;
while(str[i])
{
if(str[i]!=' ')
str[j++]=str[i];
i++;
}
str[j]='\0';
return str;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
#include <iostream>
using namespace std;
char str[100] = "a d e ff k st ";
void fun(char * s)
{
int i = 0, j = 0;
for (; str[i]; i++)
{
if(str[i] == ' ')
{
j = i;
while(s[++j] == ' ');
if (s[j]=='\0')
{
s[i] = '\0';
return;
}
else
{
s[i] = s[j];
s[j] = ' ';
}
}
}
}
int main()
{
fun(str);
cout<<str<<endl;
return 0;
}
using namespace std;
char str[100] = "a d e ff k st ";
void fun(char * s)
{
int i = 0, j = 0;
for (; str[i]; i++)
{
if(str[i] == ' ')
{
j = i;
while(s[++j] == ' ');
if (s[j]=='\0')
{
s[i] = '\0';
return;
}
else
{
s[i] = s[j];
s[j] = ' ';
}
}
}
}
int main()
{
fun(str);
cout<<str<<endl;
return 0;
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询