| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 1266 人关注过本帖
标题:为什么words=1,lines=0, partial lines=1.一直是这个答案?
取消只看楼主 加入收藏
_Strike
Rank: 2
等 级:论坛游民
帖 子:133
专家分:72
注 册:2016-3-22
结帖率:90.63%
收藏
已结贴  问题点数:10 回复次数:1 
为什么words=1,lines=0, partial lines=1.一直是这个答案?
#include<stdio.h>
#include<ctype.h>
#include<stdbool.h>
#define STOP '|'
int main(void)
{
    char c;
    char prev;
    long n_chars = 0L;
    int n_lines = 0;
    int n_words = 0;
    int p_lines = 0;
    bool inword = false;
    printf("Enter text to be ananlyzed(| to terminate;\n");
    prev = '\n';
    while ((c = getchar() != STOP))
    {
        n_chars++;
            if (c == '\n')
                n_lines++;
        if ( !isspace(c) &&  !inword)
        {
            inword = true;
                n_words++;
        }
        if (isspace(c) && inword)
            inword = false;
        prev = c;
    }
    if (prev != '\n')
        p_lines = 1;
    printf("characters = %ld,words = %d,lines = %d,",
        n_chars, n_words, n_lines);
    printf("partial lines = %d\n", p_lines);
    return 0;
}
2016-04-05 23:37
_Strike
Rank: 2
等 级:论坛游民
帖 子:133
专家分:72
注 册:2016-3-22
收藏
得分:0 
我是按着书上打的,检查过一遍了,应该没打错,难道是编译器问题吗?我用的是VS2013
2016-04-06 18:51
快速回复:为什么words=1,lines=0, partial lines=1.一直是这个答案?
数据加载中...
 
   



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

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