码迷,mamicode.com
首页 > 其他好文 > 详细

统计输入的行数,单词数和字符数

时间:2016-02-25 11:40:20      阅读:108      评论:0      收藏:0      [点我收藏+]

标签:

统计输入的行数,单词数和字符数

#include<stdio.h>
#define IN 1 /*在单词内*/
#define OUT 0 /*在单词外*/
//统计输入的行数,单词数和字符数
int main(){
    int c, nl, nw, nc, state;
    nw=nl=nc=0;
    state=OUT;
    while((c=getchar())!=EOF){
        nc++;
        if(c==\n)
            nl++;
        if(c==\n || c==\t || c== ){
            state=OUT;
        }
        else if(state==OUT){
            state=IN;
            nw++;
        }
    }
    printf("%d %d %d\n",nl,nw,nc);
    getchar();
    getchar();
    return 0;
}

实验结果

技术分享

统计输入的行数,单词数和字符数

标签:

原文地址:http://www.cnblogs.com/learning-c/p/5216175.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!