shadanji
全部博文(40)
Python(6)
C/C++(0)
K&R2(4)
C语言程序(0)
边角旮旯(1)
厨艺(0)
操作系统设计与实(6)
2011年(8)
2010年(32)
get109en
Angel_Si
jackyguo
lidanyan
xiaobaih
ChangeFu
bclzvs
heart201
xtwyp
分类: C/C++
2010-05-07 21:23:09
/* * The program is copy the input to output, and replace the multiple spaces
* by one space * * zj * 2010-5-7 */ #include <stdio.h> int main(){ int isfirstspace = 0; int c; while((c = getchar()) != EOF){ if(c == ' '){ ++isfirstspace; } else{ if(isfirstspace != 0){ putchar(' '); isfirstspace = 0; } putchar(c); } } return 0; }
上一篇:第1章 引言
下一篇:1_10
登录 注册