为了账号安全,请及时绑定邮箱和手机立即绑定

下面程序为何总没有打印结果

#include <stdio.h>
/* count lines in input */
int main(void)
{
    int c, nb, nt, nl;
    nb = 0;
    nt = 0;
    nl = 0;
    while ((c = getchar()) != EOF)
    {  
        if (c == ' ')
            ++nb;
        if (c == '\t')
        
            ++nt;
        
        if (c == '\n')
            ++nl;
    }
    printf("%d %d %d\n", nb, nt, nl);
    return 0;    
}

正在回答

举报

0/150
提交
取消

下面程序为何总没有打印结果

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信