描述: 一个句子中也许有多个连续空格,过滤掉多余的空格,只留下一个空格. 输入一行,一个字符串(长度不超过200),句子的头和尾都没有空格.输出过滤之后的句子. 样例输入 Hello world.This is c language. 样例输出 Hello world.This is c language.思路:从前往后扫(一个一个的),如果非空格并且非结尾,输出那个字母,或者如果遇到空格并且下一个也是空格,输出一个空格(防止多个空格的情况),否则不变(不要在意那个“i=i*1”,就是不变的意思…
Write a program to copy its input to its output, replacing each string of one or more blanks by a single blank. 编写这样一个程序,实现将输入流复制到输出流,但是要将输入流中多个空格过滤成一个空格. 1.旗帜变量方法 #include <stdio.h> int main(void) { int c; int inspace; //这里用了旗帜变量来过滤多余空格 inspace = ;…