问题:编写一个程序,使用字符串接收文本输入getchar()
并输出字符串,并删除多个空格。
这是我编写伪代码的方式:
While each input character is received before reaching EOF, do the following:
1) if character is non-blank, print it out
2) otherwise:
a. print out the blank
b. do nothing untill the next non-blank character
3) if a non-blank character is reached, go back to 1)
我试图这样实现算法:
#include <stdio.h>
/* replaces multiple blanks with a single blank */
main(){
char c;
while((c= getchar())!=EOF){
if (c != ' ')
putchar(c);
else {
putchar(c);
while(c == ' ')
;
}
}
}
当字符串包含空格时,它会停止。我不确定我应该如何调试它。我认为问题出在我的第二个while
,程序在那里进入无限循环,而不是等待新字符。