将字符串中一串连接的空格转换成一个空格输出。
将字符串中一串连接的空格转换成一个空格输出。
【正确答案】:在循环中用一个变量记录是否有两个以上的连续空格。 #include main() {int out=1,c,b="; while((c=getchar())!=EOF) if(c==b)out=0; else if(out) printf("%c",c); else {printf("%c%c", b,c);out=1;} putchar('\n '); }
Top