计算空格,制表符和换行符的程序

#include <stdio.h>

int main(void){
    int c, bl, tl, nl;
    bl = 0;
    tl = 0;
    nl = 0;

    printf("Input some characters, then press Ctrl+D./n");
    while ((c = getchar()) != EOF){
        if (c == ' ')
            ++bl;
        else if (c == '/t')
            ++tl;
        else if (c == '/n')
            ++nl;
}
    printf("Count of blanks is %d, count of tabs is %d, count of newlines is %d./n", bl, tl, nl);

    return 0;
}

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/266652.html

(0)
上一篇 2022年6月7日
下一篇 2022年6月7日

相关推荐

发表回复

登录后才能评论