标题:帮忙看看这个程序的问题吧,运行不了啊
取消只看楼主
feiyue323
Rank: 2
等 级:论坛游民
威 望:1
帖 子:35
专家分:18
注 册:2016-9-16
结帖率:87.5%
已结贴  问题点数:16 回复次数:0 
帮忙看看这个程序的问题吧,运行不了啊
#include<stdio.h>
int main()
{
    int c=0;
    int line=0;
    int tab=0;
    int space=0;
    while((c=getchar())!=EOF)//input Ctrl+D is EOF
    {
        if(c=='\n')
            line++;
        else if(c==' ')
            space++;
        else if(c==' ')
            tab++;
    }
    printf("the number of line is %3d;\nthe number of space is %3d;\nthe number of tab is %3d;\n",line,space,tab);
    return 0;
}
搜索更多相关主题的帖子: number return 
2016-10-20 17:51



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




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

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