• 计数程序


    1:字符计数

    #include<stdio.h>
    main()
    {
        char c;
        double n=0;    //注意可以使用double 类型
        while((c=getchar())!=EOF)
        n++;
        printf("%.0f",n);
    }

    2:行计数

    #include<stdio.h>
    main()
    {
        char c;
        int n=0;    //注意可以使用double 类型
        while((c=getchar())!=EOF)
        if(c=='\n')
        { n++;
        printf("%d\n",n);
        }
    }

    3:统计单词字符行数

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

  • 相关阅读:
    Prototype
    Builder Pattern
    Chain of Responsibility
    Flyweight
    HBase概念学习(九)HTablePool为何弃用?
    用web查看hadoop运行状态
    Hadoop的位置
    SQLServer的TDE加密
    Log4Net advanced pattern tips
    Forrest Gump
  • 原文地址:https://www.cnblogs.com/macula7/p/1960815.html
Copyright © 2020-2023  润新知