标题:!inwords
取消只看楼主
x610665322
Rank: 1
等 级:新手上路
帖 子:18
专家分:7
注 册:2017-12-26
结帖率:62.5%
已结贴  问题点数:20 回复次数:0 
!inwords
while( (input = getchar() ) != EOF)
{
if(!isspace(input) && !ispunct(input))
character_count++; //字母数
if(!isspace(input) && !inwords)
{
inwords = true; //开始一个新单词
words_count++; //统计单词数
}
if( (ispunct(input) || isspace(input) ) && inwords)
inwords = false; //到达单词结尾
这个!inwords我不知道他所在的性质或者说是意义,有人能给我一些观点吗?在if的条件表达式代表什么意思?if(!isspace(input) && !inwords)
搜索更多相关主题的帖子: input 单词 if 表达式 
2017-12-29 22:58



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




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

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