Chinaunix首页 | 论坛 | 博客
  • 博客访问: 82535
  • 博文数量: 40
  • 博客积分: 1820
  • 博客等级: 上尉
  • 技术积分: 395
  • 用 户 组: 普通用户
  • 注册时间: 2010-04-26 16:12
文章分类

全部博文(40)

文章存档

2011年(8)

2010年(32)

我的朋友
1_9

分类: 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;
}


阅读(543) | 评论(0) | 转发(0) |
0

上一篇:第1章 引言

下一篇:1_10

给主人留下些什么吧!~~