c程序设计语言笔记001

统计输入行数

# include<stdio.h>
main ()
{
    int c,nl;
    nl=0;
    while ((c=getchar())!=EOF)
    {
        if(c=='\n')
            ++nl;
    }
    printf("%d\n",nl);
}

单词计数 统计输入的函数nl 单词数nw 字符数nc

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

 

posted @ 2014-11-27 19:34  聪明娄娄  阅读(138)  评论(0编辑  收藏  举报