C语言:输入一个字符串放入数组里,删除其中的空格

尽量别写太长,简单点,我是新手。
2024-11-16 01:23:36
推荐回答(2个)
回答(1):

程序:
#include
#include
#define N 100
void main()
{
int i=0,j;
char c,str[N];
printf("输入字符串str:\n");
while((c=getchar())!='\n')
{
str[i]=c;//输入字符串
i++;
}
str[i]='\0';
for(i=0;str[i]!='\0';i++)
{
if(str[i]==' ')
{
for(j=i+1;str[j]!='\0';j++)
{
str[j-1]=str[j];
}
str[j]='\0';
}
else continue;
}
str[i-2]='\0';
printf("去掉空格后的字符串为:\n");
for(i=0;str[i]!='\0';i++)
printf("%c",str[i]);
printf("\n");
}
运行结果:
输入字符串str:
ing ing ing
去掉空格后的字符串为:
inginging
Press any key to continue

回答(2):

#include
void main()
{char a[8],p;
int i,j;
gets(a);
i=0;j=7
for(;i{p=a[i];
a[i]=a[j];
a[j]=p;}
puts(a);
}