Chinaunix首页 | 论坛 | 博客
  • 博客访问: 47071
  • 博文数量: 33
  • 博客积分: 1301
  • 博客等级: 中尉
  • 技术积分: 335
  • 用 户 组: 普通用户
  • 注册时间: 2008-08-31 21:06
文章分类
文章存档

2009年(33)

我的朋友

分类: C/C++

2009-06-20 17:15:41

Word Counting 单词计数
Version 1:

#include<stdio.h>

int main(){
    int c, n;
    n = 0;
    while((c = getchar()) != EOF){
        if(c != ' ' && c != '\t' && c != '\n')
            n ++;
        while(c != ' ' && c != '\t' && c != '\n')
            c = getchar();//因为get到空格不算空格都可以,所以不ungetc了

    }
    printf("%d\n", n);
}

 

Version 2:

#include<stdio.h>

int main(){
    int c, state, nw;
    state = 0;//outside

    nw = 0;
    while((c = getchar()) != EOF){
        if(c == ' ' || c == '\t' || c == '\n')
            state = 0;
        else if(state == 0){
            nw++;
            state = 1;
        }
    }
    printf("%d\n", nw);
}

阅读(560) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~