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

2009年(33)

我的朋友

分类: C/C++

2009-06-20 17:52:15

 
nc: 字符数
nw: 单词数
ns: 空格数
nl: 换行数
nt: tab数
 

#include<stdio.h>

#define OUT 0
#define IN 1

int main(){
    int c, nc, nw, ns, nl, nt, state;
    nc = nw = ns = nl = nt = 0;
    state = OUT;
    while((c = getchar()) != EOF){
        nc++;
        if(c == ' ')
            ns++;
        else if(c == '\t')
            nt++;
        else if(c == '\n')
            nl++;

        if(c == ' ' || c == '\t' || c == '\n')
            state = OUT;
        else if(state == OUT)
            state = IN, ++nw;
    }
    printf("characters: %d, spaces: %d, words: %d, newlines: %d, tabs: %d\n",
           nc, ns, nw, nl, nt);
}

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