标题:求指教。。字符区别函数
取消只看楼主
威猛的小绵羊
Rank: 1
等 级:新手上路
帖 子:15
专家分:0
注 册:2022-5-21
结帖率:0
已结贴  问题点数:10 回复次数:0 
求指教。。字符区别函数
#include<stdio.h>
#include<ctype.h>
int main()
{
    int a, b, c;
    a = b = c = 0;
    char ch;
    while (ch = getchar() != '#')
    {
        if (iswgraph(ch))
            a += 1;
        if (isblank(ch))
            b += 1;
        if ((ch != ' ')&& (ch != '\n'))
            c += 1;
        continue;
    }
    printf("空白符为:%d\n换行符为:%d\n其他字符为:%d", a, b, c);
    return 0;
}为什么出来是这样的

搜索更多相关主题的帖子: 区别 函数 字符 int include 
2022-10-15 11:40



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-510327-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.023453 second(s), 9 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved