解题思路:
输入之后计算字符数;
将空格以及空格之后的字符向前移动;
注意事项:
参考代码:
#include<stdio.h>
#include<string.h>
int main()
{
char a[10000];
while(gets(a)&&strcmp(a,"ENnd of file")!=0)
{
int i=strlen(a);
for(int j=0;j<i;j++)
if(a[j]==' ')
{
int k=j;
while(k!=i)
{
a[k]=a[k+1];
k++;
}
}
puts(a);
}
return 0;
}
0.0分
0 人评分